https://blog.pocketcasts.com/

提交的 URL:
https://blog.pocketcasts.com/
报告完成时间:

链接 · 找到 12 个

从页面中识别出的传出链接

链接文本
https://pocketcastsblog.wordpress.com/press/Press
https://itunes.apple.com/au/app/pocket-casts/id414834813?mt=8&uo=4&at=10l4WeApp Store
https://play.google.com/store/apps/details?id=au.com.shiftyjelly.pocketcastsGoogle Play
https://automattic.com/work-with-us/Careers
https://wordpress.org/WordPress
https://twitter.com/pocketcastsTwitter
https://pocketcastsblog.wordpress.com/wp-admin/site-editor.php?postType=wp_template&postId=pub/blockbase//indexEdit Site
https://wordpress.com/start/Sign up
https://wordpress.com/read/feeds/126136326 View site in Reader
https://subscribe.wordpress.com/Manage subscriptions

JavaScript 变量 · 找到 45 个

在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问

名称类型
0object
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
wpcom_remote_login_extra_authstring
wpcom_remote_login_remove_dom_node_idfunction
wpcom_remote_login_remove_dom_node_classesfunction
wpcom_remote_login_final_cleanupfunction
addLoadEventfunction
_wpemojiSettingsobject

控制台日志消息 · 找到 0 条

记录到 Web 控制台的消息

HTML

页面的原始 HTML 正文

<!DOCTYPE html><html lang="en"><head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="max-image-preview:large">

<!-- Async WordPress.com Remote Login -->
<script async="" src="//www.google-analytics.com/analytics.js"></script><script id="wpcom_remote_login_js">
var wpcom_remote_login_extra_auth = '';
function wpcom_remote_login_remove_dom_node_id( element_id ) {
	var dom_node = document.getElementById( element_id );
	if ( dom_node ) { dom_node.parentNode.removeChild( dom_node ); }
}
function wpcom_remote_login_remove_dom_node_classes( class_name ) {
	var dom_nodes = document.querySelectorAll( '.' + class_name );
	for ( var i = 0; i < dom_nodes.length; i++ ) {
		dom_nodes[ i ].parentNode.removeChild( dom_nodes[ i ] );
	}
}
function wpcom_remote_login_final_cleanup() {
	wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" );
}

// Watch for messages back from the remote login
window.addEventListener( "message", function( e ) {
	if ( e.origin === "https://r-login.wordpress.com" ) {
		var data = {};
		try {
			data = JSON.parse( e.data );
		} catch( e ) {
			wpcom_remote_login_final_cleanup();
			return;
		}

		if ( data.msg === 'LOGIN' ) {
			// Clean up the login check iframe
			wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );

			var id_regex = new RegExp( /^[0-9]+$/ );
			var token_regex = new RegExp( /^.*|.*|.*$/ );
			if (
				token_regex.test( data.token )
				&& id_regex.test( data.wpcomid )
			) {
				// We have everything we need to ask for a login
				var script = document.createElement( "script" );
				script.setAttribute( "id", "wpcom_remote_login_validate" );
				script.src = '/remote-login.php?wpcom_remote_login=validate'
					+ '&wpcomid=' + data.wpcomid
					+ '&token=' + encodeURIComponent( data.token )
					+ '&host=' + window.location.protocol
					+ '//' + window.location.hostname
					+ '&postid=8607'
					+ '&is_singular=';
				document.body.appendChild( script );
			}

			return;
		}

		// Safari ITP, not logged in, so redirect
		if ( data.msg === 'LOGIN-REDIRECT' ) {
			window.location = 'https://wordpress.com/log-in?redirect_to=' + window.location.href;
			return;
		}

		// Safari ITP, storage access failed, remove the request
		if ( data.msg === 'LOGIN-REMOVE' ) {
			var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }';
			var style_zap = document.createElement( 'style' );
			style_zap.type = 'text/css';
			style_zap.appendChild( document.createTextNode( css_zap ) );
			document.body.appendChild( style_zap );

			var e = document.getElementById( 'wpcom_request_access_iframe' );
			e.parentNode.removeChild( e );

			document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000';

			return;
		}

		// Safari ITP
		if ( data.msg === 'REQUEST_ACCESS' ) {
			console.log( 'request access: safari' );

			// Check ITP iframe enable/disable knob
			if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) {
				return;
			}

			// If we are in a "private window" there is no ITP.
			var private_window = false;
			try {
				var opendb = window.openDatabase( null, null, null, null );
			} catch( e ) {
				private_window = true;
			}

			if ( private_window ) {
				console.log( 'private window' );
				return;
			}

			var iframe = document.createElement( 'iframe' );
			iframe.id = 'wpcom_request_access_iframe';
			iframe.setAttribute( 'scrolling', 'no' );
			iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' );
			iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid );

			var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } ';

			var style = document.createElement( 'style' );
			style.type = 'text/css';
			style.id = 'wpcom_request_access_styles';
			style.appendChild( document.createTextNode( css ) );
			document.body.appendChild( style );

			document.body.appendChild( iframe );
		}

		if ( data.msg === 'DONE' ) {
			wpcom_remote_login_final_cleanup();
		}
	}
}, false );

// Inject the remote login iframe after the page has had a chance to load
// more critical resources
window.addEventListener( "DOMContentLoaded", function( e ) {
	var iframe = document.createElement( "iframe" );
	iframe.style.display = "none";
	iframe.setAttribute( "scrolling", "no" );
	iframe.setAttribute( "id", "wpcom_remote_login_key" );
	iframe.src = "https://r-login.wordpress.com/remote-login.php"
		+ "?wpcom_remote_login=key"
		+ "&origin=aHR0cHM6Ly9ibG9nLnBvY2tldGNhc3RzLmNvbQ%3D%3D"
		+ "&wpcomid=198489407"
		+ "&time=1734474307";
	document.body.appendChild( iframe );
}, false );
</script>
<title>Pocket Casts Blog</title>
<link rel="dns-prefetch" href="//s0.wp.com">
<link rel="dns-prefetch" href="//stats.wp.com">
<link rel="alternate" type="application/rss+xml" title="Pocket Casts Blog » Feed" href="https://blog.pocketcasts.com/feed/">
<link rel="alternate" type="application/rss+xml" title="Pocket Casts Blog » Comments Feed" href="https://blog.pocketcasts.com/comments/feed/">
	<script type="text/javascript">
		/* <![CDATA[ */
		function addLoadEvent(func) {
			var oldonload = window.onload;
			if (typeof window.onload != 'function') {
				window.onload = func;
			} else {
				window.onload = function () {
					oldonload();
					func();
				}
			}
		}
		/* ]]> */
	</script>
	<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/s0.wp.com\/wp-includes\/js\/wp-emoji-release.min.js?m=1719498190i&ver=6.8-alpha-59438"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
</script>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-0-1" href="https://s0.wp.com/wp-content/mu-plugins/wpcom-theme-compat/blockbase.css?m=1633680961i&amp;cssminify=yes" type="text/css" media="all">
<style id="blockbase_font_faces-inline-css">
/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-Light-italic.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-Light-italic.woff2) format('woff2');
	unicode-range: U+0370-03FF;
}

/* hebrew */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-hebrew-Light-italic.woff2) format('woff2');
	unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

/* vietnamese */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-vietnamese-Light-italic.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-latin-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-Light-italic.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-Light-italic.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-Light-italic.woff2) format('woff2');
	unicode-range: U+0370-03FF;
}

/* hebrew */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-hebrew-Light-italic.woff2) format('woff2');
	unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

/* vietnamese */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-vietnamese-Light-italic.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-latin-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-Light-italic.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-Light-italic.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-Light-italic.woff2) format('woff2');
	unicode-range: U+0370-03FF;
}

/* hebrew */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-hebrew-Light-italic.woff2) format('woff2');
	unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

/* vietnamese */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-vietnamese-Light-italic.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-latin-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-Light-italic.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-Light-italic.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-Light-italic.woff2) format('woff2');
	unicode-range: U+0370-03FF;
}

/* hebrew */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-hebrew-Light-italic.woff2) format('woff2');
	unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

/* vietnamese */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-vietnamese-Light-italic.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-latin-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-Light-italic.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-Light-italic.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-Light-italic.woff2) format('woff2');
	unicode-range: U+0370-03FF;
}

/* hebrew */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-hebrew-Light-italic.woff2) format('woff2');
	unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

/* vietnamese */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-vietnamese-Light-italic.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-latin-ext-Light-italic.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-Light-italic.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-ext-Light.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-Light.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-ext-Light.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-Light.woff2) format('woff2');
	unicode-range: U+0370-03FF;
}

/* hebrew */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-hebrew-Light.woff2) format('woff2');
	unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

/* vietnamese */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-vietnamese-Light.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-latin-ext-Light.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-Light.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-ext-Light.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-Light.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-ext-Light.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-Light.woff2) format('woff2');
	unicode-range: U+0370-03FF;
}

/* hebrew */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-hebrew-Light.woff2) format('woff2');
	unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

/* vietnamese */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-vietnamese-Light.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-latin-ext-Light.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-Light.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-ext-Light.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-Light.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-ext-Light.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-Light.woff2) format('woff2');
	unicode-range: U+0370-03FF;
}

/* hebrew */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-hebrew-Light.woff2) format('woff2');
	unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

/* vietnamese */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-vietnamese-Light.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-latin-ext-Light.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-Light.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-ext-Light.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-Light.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-ext-Light.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-Light.woff2) format('woff2');
	unicode-range: U+0370-03FF;
}

/* hebrew */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-hebrew-Light.woff2) format('woff2');
	unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

/* vietnamese */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-vietnamese-Light.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-latin-ext-Light.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-Light.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-ext-Light.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-cyrillic-Light.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-ext-Light.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-greek-Light.woff2) format('woff2');
	unicode-range: U+0370-03FF;
}

/* hebrew */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-hebrew-Light.woff2) format('woff2');
	unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

/* vietnamese */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-vietnamese-Light.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-latin-ext-Light.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 800;
	font-stretch: 100%;
	font-display: swap;
	src: url(https://s0.wp.com/wp-content/themes/pub/blockbase/assets/fonts/open-sans/open-sans-Light.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
</style>
<style id="wp-block-site-logo-inline-css">
.wp-block-site-logo{box-sizing:border-box;line-height:0}.wp-block-site-logo a{display:inline-block;line-height:0}.wp-block-site-logo.is-default-size img{height:auto;width:120px}.wp-block-site-logo img{height:auto;max-width:100%}.wp-block-site-logo a,.wp-block-site-logo img{border-radius:inherit}.wp-block-site-logo.aligncenter{margin-left:auto;margin-right:auto;text-align:center}:root :where(.wp-block-site-logo.is-style-rounded){border-radius:9999px}
</style>
<style id="wp-block-navigation-link-inline-css">
.wp-block-navigation .wp-block-navigation-item__label{overflow-wrap:break-word}.wp-block-navigation .wp-block-navigation-item__description{display:none}.link-ui-tools{border-top:1px solid #f0f0f0;padding:8px}.link-ui-block-inserter{padding-top:8px}.link-ui-block-inserter__back{margin-left:8px;text-transform:uppercase}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-6-1" href="https://s0.wp.com/_static/??-eJytzFEKwjAMgOELucYtgvognqWtIUSzdDTtZLd34IMX8PHjhx/ey5CLNbIGi3YWc+C+M1HlvVSCdbyGSzhC6qIPSFrya1BJNdbtKweLq3BsUgy8bUohux/gL2uZI9Pvep9v4xkRpxNO+PwAIiREYg==&amp;cssminify=yes" type="text/css" media="all">
<style id="wp-block-group-inline-css">
.wp-block-group{box-sizing:border-box}:where(.wp-block-group.wp-block-group-is-layout-constrained){position:relative}
</style>
<style id="wp-block-post-featured-image-inline-css">
.wp-block-post-featured-image{margin-left:0;margin-right:0}.wp-block-post-featured-image a{display:block;height:100%}.wp-block-post-featured-image :where(img){box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom;width:100%}.wp-block-post-featured-image.alignfull img,.wp-block-post-featured-image.alignwide img{width:100%}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim{background-color:#000;inset:0;position:absolute}.wp-block-post-featured-image{position:relative}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient{background-color:initial}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0{opacity:0}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10{opacity:.1}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20{opacity:.2}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30{opacity:.3}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40{opacity:.4}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50{opacity:.5}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60{opacity:.6}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70{opacity:.7}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80{opacity:.8}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90{opacity:.9}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100{opacity:1}.wp-block-post-featured-image:where(.alignleft,.alignright){width:100%}
</style>
<style id="wp-block-paragraph-inline-css">
.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
</style>
<style id="wp-block-post-terms-inline-css">
.wp-block-post-terms{box-sizing:border-box}.wp-block-post-terms .wp-block-post-terms__separator{white-space:pre-wrap}
</style>
<style id="wp-block-post-title-inline-css">
.wp-block-post-title{box-sizing:border-box;word-break:break-word}.wp-block-post-title :where(a){display:inline-block;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-decoration:inherit}
</style>
<style id="wp-block-spacer-inline-css">
.wp-block-spacer{clear:both}
</style>
<style id="wp-block-separator-inline-css">
@charset "UTF-8";.wp-block-separator{border:none;border-top:2px solid}:root :where(.wp-block-separator.is-style-dots){height:auto;line-height:1;text-align:center}:root :where(.wp-block-separator.is-style-dots):before{color:currentColor;content:"···";font-family:serif;font-size:1.5em;letter-spacing:2em;padding-left:2em}.wp-block-separator.is-style-dots{background:none!important;border:none!important}
</style>
<style id="wp-block-post-author-inline-css">
.wp-block-post-author{box-sizing:border-box;display:flex;flex-wrap:wrap}.wp-block-post-author__byline{font-size:.5em;margin-bottom:0;margin-top:0;width:100%}.wp-block-post-author__avatar{margin-right:1em}.wp-block-post-author__bio{font-size:.7em;margin-bottom:.7em}.wp-block-post-author__content{flex-basis:0;flex-grow:1}.wp-block-post-author__name{margin:0}
</style>
<style id="wp-block-post-date-inline-css">
.wp-block-post-date{box-sizing:border-box}
</style>
<style id="wp-block-columns-inline-css">
.wp-block-columns{align-items:normal!important;box-sizing:border-box;display:flex;flex-wrap:wrap!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis]{flex-grow:0}}.wp-block-columns.is-not-stacked-on-mobile{flex-wrap:nowrap!important}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis]{flex-grow:0}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;overflow-wrap:break-word;word-break:break-word}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-stretch{align-self:stretch}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}
</style>
<style id="wp-block-post-template-inline-css">
.wp-block-post-template{list-style:none;margin-bottom:0;margin-top:0;max-width:100%;padding:0}.wp-block-post-template.is-flex-container{display:flex;flex-direction:row;flex-wrap:wrap;gap:1.25em}.wp-block-post-template.is-flex-container>li{margin:0;width:100%}@media (min-width:600px){.wp-block-post-template.is-flex-container.is-flex-container.columns-2>li{width:calc(50% - .625em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-3>li{width:calc(33.33333% - .83333em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-4>li{width:calc(25% - .9375em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-5>li{width:calc(20% - 1em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-6>li{width:calc(16.66667% - 1.04167em)}}@media (max-width:600px){.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid{grid-template-columns:1fr}}.wp-block-post-template-is-layout-constrained>li>.alignright,.wp-block-post-template-is-layout-flow>li>.alignright{float:right;margin-inline-end:0;margin-inline-start:2em}.wp-block-post-template-is-layout-constrained>li>.alignleft,.wp-block-post-template-is-layout-flow>li>.alignleft{float:left;margin-inline-end:2em;margin-inline-start:0}.wp-block-post-template-is-layout-constrained>li>.aligncenter,.wp-block-post-template-is-layout-flow>li>.aligncenter{margin-inline-end:auto;margin-inline-start:auto}
</style>
<style id="wp-block-query-pagination-inline-css">
.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type{margin-inline-start:auto}.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child{margin-inline-end:auto}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow{display:inline-block;margin-right:1ch}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-query-pagination .wp-block-query-pagination-next-arrow{display:inline-block;margin-left:1ch}.wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-query-pagination.aligncenter{justify-content:center}
</style>
<style id="wp-block-heading-inline-css">
h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
</style>
<style id="wp-block-latest-posts-inline-css">
.wp-block-latest-posts{box-sizing:border-box}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both;overflow-wrap:break-word}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap}.wp-block-latest-posts.is-grid li{margin:0 1.25em 1.25em 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - .625em)}.wp-block-latest-posts.columns-2 li:nth-child(2n){margin-right:0}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - .83333em)}.wp-block-latest-posts.columns-3 li:nth-child(3n){margin-right:0}.wp-block-latest-posts.columns-4 li{width:calc(25% - .9375em)}.wp-block-latest-posts.columns-4 li:nth-child(4n){margin-right:0}.wp-block-latest-posts.columns-5 li{width:calc(20% - 1em)}.wp-block-latest-posts.columns-5 li:nth-child(5n){margin-right:0}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 1.04167em)}.wp-block-latest-posts.columns-6 li:nth-child(6n){margin-right:0}}:root :where(.wp-block-latest-posts.is-grid){padding:0}:root :where(.wp-block-latest-posts.wp-block-latest-posts__list){padding-left:0}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;font-size:.8125em}.wp-block-latest-posts__post-excerpt{margin-bottom:1em;margin-top:.5em}.wp-block-latest-posts__featured-image a{display:inline-block}.wp-block-latest-posts__featured-image img{height:auto;max-width:100%;width:auto}.wp-block-latest-posts__featured-image.alignleft{float:left;margin-right:1em}.wp-block-latest-posts__featured-image.alignright{float:right;margin-left:1em}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-46-1" href="https://s0.wp.com/wp-content/plugins/gutenberg-core/v19.8.0/build/block-library/blocks/social-links/style.css?m=1733324323i&amp;cssminify=yes" type="text/css" media="all">
<style id="wp-emoji-styles-inline-css">

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
</style>
<style id="wp-block-library-inline-css">
:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px;--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color)}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
.has-text-align-justify {
	text-align:justify;
}
.has-text-align-justify{text-align:justify;}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-50-1" href="https://s0.wp.com/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/coblocks-style.css?m=1681832297i&amp;cssminify=yes" type="text/css" media="all">
<style id="wp-block-template-skip-link-inline-css">

		.skip-link.screen-reader-text {
			border: 0;
			clip: rect(1px,1px,1px,1px);
			clip-path: inset(50%);
			height: 1px;
			margin: -1px;
			overflow: hidden;
			padding: 0;
			position: absolute !important;
			width: 1px;
			word-wrap: normal !important;
		}

		.skip-link.screen-reader-text:focus {
			background-color: #eee;
			clip: auto !important;
			clip-path: none;
			color: #444;
			display: block;
			font-size: 1em;
			height: auto;
			left: 5px;
			line-height: normal;
			padding: 15px 23px 14px;
			text-decoration: none;
			top: 5px;
			width: auto;
			z-index: 100000;
		}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-52-1" href="https://s0.wp.com/_static/??/wp-content/mu-plugins/core-compat/wp-mediaelement.css,/wp-content/mu-plugins/wpcom-bbpress-premium-themes.css?m=1432920480j&amp;cssminify=yes" type="text/css" media="all">
<style id="global-styles-inline-css">
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--primary: #000000;--wp--preset--color--secondary: #03a9f4;--wp--preset--color--foreground: #474747;--wp--preset--color--background: #ffffff;--wp--preset--color--tertiary: #e24e42;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 1rem;--wp--preset--font-size--medium: 1.5rem;--wp--preset--font-size--large: 1.75rem;--wp--preset--font-size--x-large: 2rem;--wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-mono: 'DM Mono', monospace;--wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;--wp--preset--font-family--epilogue: Epilogue, sans-serif;--wp--preset--font-family--fahkwang: Fahkwang, sans-serif;--wp--preset--font-family--figtree: Figtree, sans-serif;--wp--preset--font-family--fjalla-one: 'Fjalla One', sans-serif;--wp--preset--font-family--fraunces: Fraunces, serif;--wp--preset--font-family--gabarito: Gabarito, system-ui;--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;--wp--preset--font-family--ibarra-real-nova: 'Ibarra Real Nova', serif;--wp--preset--font-family--instrument-serif: 'Instrument Serif', serif;--wp--preset--font-family--jost: Jost, sans-serif;--wp--preset--font-family--literata: Literata, serif;--wp--preset--font-family--newsreader: Newsreader, serif;--wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', sans-serif;--wp--preset--font-family--pt-serif: 'PT Serif', serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--rufina: Rufina, serif;--wp--preset--font-family--sora: Sora, sans-serif;--wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;--wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;--wp--preset--font-family--syne: Syne, sans-serif;--wp--preset--font-family--texturina: Texturina, serif;--wp--preset--font-family--urbanist: Urbanist, sans-serif;--wp--preset--font-family--system-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--courier-prime: 'Courier Prime', serif;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', serif;--wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;--wp--preset--font-family--helvetica-neue: 'Helvetica Neue','Helvetica', 'Arial', sans-serif;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;--wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;--wp--preset--font-family--lora: Lora, serif;--wp--preset--font-family--merriweather: Merriweather, serif;--wp--preset--font-family--montserrat: Montserrat, sans-serif;--wp--preset--font-family--nunito: Nunito, sans-serif;--wp--preset--font-family--open-sans: 'Open Sans', sans-serif;--wp--preset--font-family--overpass: Overpass, sans-serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--red-hat-display: 'Red Hat Display', sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', sans-serif;--wp--preset--font-family--rubik: Rubik, sans-serif;--wp--preset--font-family--source-sans-pro: 'Source Sans Pro', sans-serif;--wp--preset--font-family--source-serif-pro: 'Source Serif Pro', sans-serif;--wp--preset--font-family--space-mono: 'Space Mono', sans-serif;--wp--preset--font-family--work-sans: 'Work Sans', sans-serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);--wp--custom--opt-out-of-parent-style-variations: ;--wp--custom--alignment--aligned-max-width: 50%;--wp--custom--button--border--color: var(--wp--custom--color--primary);--wp--custom--button--border--radius: 4px;--wp--custom--button--border--style: solid;--wp--custom--button--border--width: 2px;--wp--custom--button--color--background: var(--wp--custom--color--primary);--wp--custom--button--color--text: var(--wp--custom--color--background);--wp--custom--button--hover--color--text: var(--wp--custom--color--background);--wp--custom--button--hover--color--background: var(--wp--custom--color--secondary);--wp--custom--button--hover--border--color: var(--wp--custom--color--secondary);--wp--custom--button--spacing--padding--top: 0.667em;--wp--custom--button--spacing--padding--bottom: 0.667em;--wp--custom--button--spacing--padding--left: 1.333em;--wp--custom--button--spacing--padding--right: 1.333em;--wp--custom--button--typography--font-size: var(--wp--custom--font-sizes--normal);--wp--custom--button--typography--font-weight: normal;--wp--custom--button--typography--line-height: 2;--wp--custom--button--outline--color--text: var(--wp--custom--color--primary);--wp--custom--button--outline--color--background: var(--wp--custom--color--background);--wp--custom--button--outline--border--color: var(--wp--custom--color--primary);--wp--custom--button--outline--hover--color--text: var(--wp--custom--color--background);--wp--custom--button--outline--hover--color--background: var(--wp--custom--color--secondary);--wp--custom--button--outline--hover--border--color: var(--wp--custom--color--primary);--wp--custom--color--foreground: var(--wp--preset--color--foreground);--wp--custom--color--background: var(--wp--preset--color--background);--wp--custom--color--primary: var(--wp--preset--color--primary);--wp--custom--color--secondary: var(--wp--preset--color--secondary);--wp--custom--color--tertiary: var(--wp--preset--color--tertiary);--wp--custom--font-sizes--x-small: 0.875rem;--wp--custom--font-sizes--normal: 1.125rem;--wp--custom--font-sizes--huge: 3rem;--wp--custom--form--padding: calc( 0.5 * var(--wp--custom--gap--horizontal) );--wp--custom--form--border--color: #EFEFEF;--wp--custom--form--border--radius: 0;--wp--custom--form--border--style: solid;--wp--custom--form--border--width: 2px;--wp--custom--form--checkbox--checked--content: "\2715";--wp--custom--form--checkbox--checked--font-size: var(--wp--custom--font-sizes--x-small);--wp--custom--form--checkbox--checked--position--left: 3px;--wp--custom--form--checkbox--checked--position--top: 3px;--wp--custom--form--checkbox--checked--sizing--height: 12px;--wp--custom--form--checkbox--checked--sizing--width: 12px;--wp--custom--form--checkbox--unchecked--content: "";--wp--custom--form--checkbox--unchecked--position--left: 0;--wp--custom--form--checkbox--unchecked--position--top: 0.2em;--wp--custom--form--checkbox--unchecked--sizing--height: 16px;--wp--custom--form--checkbox--unchecked--sizing--width: 16px;--wp--custom--form--color--background: transparent;--wp--custom--form--color--box-shadow: none;--wp--custom--form--color--text: inherit;--wp--custom--form--label--spacing--margin--bottom: var(--wp--custom--gap--baseline);--wp--custom--form--label--typography--font-size: var(--wp--custom--font-sizes--x-small);--wp--custom--form--label--typography--font-weight: normal;--wp--custom--form--label--typography--letter-spacing: normal;--wp--custom--form--label--typography--text-transform: none;--wp--custom--form--typography--font-size: var(--wp--custom--font-sizes--normal);--wp--custom--gallery--caption--font-size: var(--wp--preset--font-size--small);--wp--custom--body--typography--line-height: 1.6;--wp--custom--heading--typography--font-weight: 400;--wp--custom--heading--typography--line-height: 1.125;--wp--custom--latest-posts--meta--color--text: var(--wp--custom--color--primary);--wp--custom--layout--content-size: 620px;--wp--custom--gap--baseline: 15px;--wp--custom--gap--horizontal: min(30px, 5vw);--wp--custom--gap--vertical: min(30px, 5vw);--wp--custom--navigation--submenu--border--color: var(--wp--custom--color--primary);--wp--custom--navigation--submenu--border--radius: var(--wp--custom--form--border--radius);--wp--custom--navigation--submenu--border--style: var(--wp--custom--form--border--style);--wp--custom--navigation--submenu--border--width: var(--wp--custom--form--border--width);--wp--custom--navigation--submenu--color--background: var(--wp--custom--color--background);--wp--custom--navigation--submenu--color--text: var(--wp--custom--color--foreground);--wp--custom--paragraph--dropcap--margin: .1em .1em 0 0;--wp--custom--paragraph--dropcap--typography--font-size: 110px;--wp--custom--paragraph--dropcap--typography--font-weight: 400;--wp--custom--post-author--typography--font-weight: normal;--wp--custom--post-comment--typography--font-size: var(--wp--custom--font-sizes--normal);--wp--custom--post-comment--typography--line-height: var(--wp--custom--body--typography--line-height);--wp--custom--pullquote--citation--typography--font-size: var(--wp--custom--font-sizes--x-small);--wp--custom--pullquote--citation--typography--font-family: inherit;--wp--custom--pullquote--citation--typography--font-style: italic;--wp--custom--pullquote--citation--spacing--margin--top: var(--wp--custom--gap--vertical);--wp--custom--pullquote--typography--text-align: left;--wp--custom--quote--citation--typography--font-size: var(--wp--custom--font-sizes--x-small);--wp--custom--quote--citation--typography--font-style: italic;--wp--custom--quote--citation--typography--font-weight: 400;--wp--custom--quote--typography--text-align: left;--wp--custom--separator--opacity: 1;--wp--custom--separator--width: 150px;--wp--custom--table--figcaption--typography--font-size: var(--wp--custom--font-sizes--x-small);--wp--custom--video--caption--text-align: center;--wp--custom--video--caption--margin: var(--wp--custom--gap--vertical) auto;}:root { --wp--style--global--content-size: 620px;--wp--style--global--wide-size: 1000px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: calc(2 * var(--wp--custom--gap--baseline)); margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: calc(2 * var(--wp--custom--gap--baseline)); }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: calc(2 * var(--wp--custom--gap--baseline));margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: calc(2 * var(--wp--custom--gap--baseline));margin-block-end: 0;}:root :where(.is-layout-flex){gap: calc(2 * var(--wp--custom--gap--baseline));}:root :where(.is-layout-grid){gap: calc(2 * var(--wp--custom--gap--baseline));}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{background-color: var(--wp--custom--color--background);color: var(--wp--custom--color--foreground);font-family: var(--wp--preset--font-family--open-sans);font-size: var(--wp--custom--font-sizes--normal);line-height: var(--wp--custom--body--typography--line-height);padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){color: var(--wp--preset--color--tertiary);text-decoration: none;}:root :where(a:where(:not(.wp-element-button)):hover){text-decoration: none;}:root :where(a:where(:not(.wp-element-button)):focus){text-decoration: none;}:root :where(a:where(:not(.wp-element-button)):active){text-decoration: none;}h1{font-size: var(--wp--custom--font-sizes--huge);font-weight: var(--wp--custom--heading--typography--font-weight);line-height: var(--wp--custom--heading--typography--line-height);margin-top: var(--wp--custom--gap--vertical);margin-bottom: var(--wp--custom--gap--vertical);}h2{font-size: var(--wp--preset--font-size--x-large);font-weight: var(--wp--custom--heading--typography--font-weight);line-height: var(--wp--custom--heading--typography--line-height);margin-top: var(--wp--custom--gap--vertical);margin-bottom: var(--wp--custom--gap--vertical);}h3{font-size: var(--wp--preset--font-size--large);font-weight: var(--wp--custom--heading--typography--font-weight);line-height: var(--wp--custom--heading--typography--line-height);margin-top: var(--wp--custom--gap--vertical);margin-bottom: var(--wp--custom--gap--vertical);}h4{font-size: var(--wp--preset--font-size--medium);font-weight: var(--wp--custom--heading--typography--font-weight);line-height: var(--wp--custom--heading--typography--line-height);margin-top: var(--wp--custom--gap--vertical);margin-bottom: var(--wp--custom--gap--vertical);}h5{font-size: var(--wp--custom--font-sizes--normal);font-weight: var(--wp--custom--heading--typography--font-weight);line-height: var(--wp--custom--heading--typography--line-height);margin-top: var(--wp--custom--gap--vertical);margin-bottom: var(--wp--custom--gap--vertical);}h6{font-size: var(--wp--preset--font-size--small);font-weight: var(--wp--custom--heading--typography--font-weight);line-height: var(--wp--custom--heading--typography--line-height);margin-top: var(--wp--custom--gap--vertical);margin-bottom: var(--wp--custom--gap--vertical);}:root :where(.wp-element-button, .wp-block-button__link){background-color: var(--wp--custom--button--color--background);border-radius: var(--wp--custom--button--border--radius);border-width: 0;color: var(--wp--custom--button--color--text);font-family: var(--wp--preset--font-family--body-font);font-size: var(--wp--custom--button--typography--font-size);font-weight: var(--wp--custom--button--typography--font-weight);line-height: var(--wp--custom--button--typography--line-height);padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width) );padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width) );padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width) );padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width) );text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-color{color: var(--wp--preset--color--primary) !important;}.has-secondary-color{color: var(--wp--preset--color--secondary) !important;}.has-foreground-color{color: var(--wp--preset--color--foreground) !important;}.has-background-color{color: var(--wp--preset--color--background) !important;}.has-tertiary-color{color: var(--wp--preset--color--tertiary) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.has-secondary-background-color{background-color: var(--wp--preset--color--secondary) !important;}.has-foreground-background-color{background-color: var(--wp--preset--color--foreground) !important;}.has-background-background-color{background-color: var(--wp--preset--color--background) !important;}.has-tertiary-background-color{background-color: var(--wp--preset--color--tertiary) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.has-secondary-border-color{border-color: var(--wp--preset--color--secondary) !important;}.has-foreground-border-color{border-color: var(--wp--preset--color--foreground) !important;}.has-background-border-color{border-color: var(--wp--preset--color--background) !important;}.has-tertiary-border-color{border-color: var(--wp--preset--color--tertiary) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-bricolage-grotesque-font-family{font-family: var(--wp--preset--font-family--bricolage-grotesque) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-dm-serif-display-font-family{font-family: var(--wp--preset--font-family--dm-serif-display) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-fahkwang-font-family{font-family: var(--wp--preset--font-family--fahkwang) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fjalla-one-font-family{font-family: var(--wp--preset--font-family--fjalla-one) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-gabarito-font-family{font-family: var(--wp--preset--font-family--gabarito) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-ibarra-real-nova-font-family{font-family: var(--wp--preset--font-family--ibarra-real-nova) !important;}.has-instrument-serif-font-family{font-family: var(--wp--preset--font-family--instrument-serif) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-noto-sans-mono-font-family{font-family: var(--wp--preset--font-family--noto-sans-mono) !important;}.has-pt-serif-font-family{font-family: var(--wp--preset--font-family--pt-serif) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-rufina-font-family{font-family: var(--wp--preset--font-family--rufina) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-3-font-family{font-family: var(--wp--preset--font-family--source-sans-3) !important;}.has-source-serif-4-font-family{font-family: var(--wp--preset--font-family--source-serif-4) !important;}.has-syne-font-family{font-family: var(--wp--preset--font-family--syne) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-urbanist-font-family{font-family: var(--wp--preset--font-family--urbanist) !important;}.has-system-font-font-family{font-family: var(--wp--preset--font-family--system-font) !important;}.has-arvo-font-family{font-family: var(--wp--preset--font-family--arvo) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-helvetica-neue-font-family{font-family: var(--wp--preset--font-family--helvetica-neue) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-red-hat-display-font-family{font-family: var(--wp--preset--font-family--red-hat-display) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-source-sans-pro-font-family{font-family: var(--wp--preset--font-family--source-sans-pro) !important;}.has-source-serif-pro-font-family{font-family: var(--wp--preset--font-family--source-serif-pro) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;}
:root :where(.wp-block-navigation){font-size: var(--wp--custom--font-sizes--normal);text-decoration: none;}
:root :where(.wp-block-post-title){font-family: var(--wp--preset--font-family--open-sans);line-height: var(--wp--custom--heading--typography--line-height);margin-bottom: 0;}
:root :where(.wp-block-post-date){color: var(--wp--custom--color--foreground);font-size: var(--wp--preset--font-size--small);}
:root :where(.wp-block-separator){border-color: currentColor;border-width: 0 0 1px 0;border-style: solid;color: var(--wp--custom--color--foreground);}
:root :where(.wp-block-heading){font-family: var(--wp--preset--font-family--open-sans);}
</style>
<style id="core-block-supports-inline-css">
.wp-container-core-navigation-is-layout-1{justify-content:flex-start;}.wp-container-core-group-is-layout-1{justify-content:flex-start;}.wp-elements-216b3871dd9ee198249762e96756845d a:where(:not(.wp-element-button)){color:#999999;}.wp-container-core-group-is-layout-2{flex-wrap:nowrap;justify-content:center;}.wp-elements-906798233c39c19f01d2df5d08fa7470 a:where(:not(.wp-element-button)){color:var(--wp--preset--color--foreground);}.wp-elements-466c2d56461c0c2a18773357527e9bb9 a:where(:not(.wp-element-button)){color:#999999;}.wp-container-core-columns-is-layout-1{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-4{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-2{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-6{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-3{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-8{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-4{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-10{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-5{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-12{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-6{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-14{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-7{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-16{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-8{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-18{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-9{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-20{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-10{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-22{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-11{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-24{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-12{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-26{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-13{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-28{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-14{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-30{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-15{flex-wrap:nowrap;gap:16px;}.wp-container-core-group-is-layout-32{flex-wrap:nowrap;justify-content:center;}.wp-container-core-columns-is-layout-16{flex-wrap:nowrap;gap:16px;}.wp-container-core-query-is-layout-1 > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width:700px;margin-left:auto !important;margin-right:auto !important;}.wp-container-core-query-is-layout-1 > .alignwide{max-width:1170px;}.wp-container-core-query-is-layout-1 .alignfull{max-width:none;}.wp-elements-21eb4e1f1a1fc60d08027ae03944e9ee a:where(:not(.wp-element-button)){color:#222222;}.wp-elements-efc78b8f8d30f474b2bdc08f69f78bf3 a:where(:not(.wp-element-button)){color:#222222;}.wp-elements-65d32073a574c99226f2315931f0ca05 a:where(:not(.wp-element-button)){color:#222222;}.wp-container-core-columns-is-layout-17{flex-wrap:nowrap;}.wp-container-core-social-links-is-layout-1{flex-wrap:nowrap;gap:16px;justify-content:flex-end;}.wp-container-core-group-is-layout-35{flex-wrap:nowrap;justify-content:flex-start;}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-56-1" href="https://s0.wp.com/_static/??-eJx9jUEOwjAMBD9EcEGiVQ+ItySRGwKJHdWOKn6PubUXbjurHS1szUUmRVLQJ1YUaD1AKBzfwQuCF0G1kumz5FLOUeQEO6l210pPmQRWNC1ZTGCrHf6TErKzM6+Z6QBuKT6vP/VR75fpOg/TbRzm1xes/UHo&amp;cssminify=yes" type="text/css" media="all">
<style id="jetpack-global-styles-frontend-style-inline-css">
@import url('https://fonts-api.wp.com/css?family=Roboto:thin,extralight,light,regular,medium,semibold,bold,italic,bolditalic,extrabold,black|Rubik:thin,extralight,light,regular,medium,semibold,bold,italic,bolditalic,extrabold,black|');:root { --font-headings: Rubik; --font-base: Roboto; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
</style>
<link crossorigin="anonymous" rel="stylesheet" id="all-css-58-1" href="https://s0.wp.com/wp-content/themes/h4/global.css?m=1420737423i&amp;cssminify=yes" type="text/css" media="all">
<script id="jetpack-mu-wpcom-settings-js-before">
var JETPACK_MU_WPCOM_SETTINGS = {"assetsUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/jetpack-mu-wpcom-plugin\/moon\/vendor\/automattic\/jetpack-mu-wpcom\/src\/build\/"};
</script>
<script crossorigin="anonymous" type="text/javascript" src="https://s0.wp.com/_static/??/wp-content/js/rlt-proxy.js,/wp-includes/js/dist/vendor/wp-polyfill.min.js?m=1727178113j"></script>
<script id="rlt-proxy-js-after">
	rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
</script>
<script crossorigin="anonymous" src="https://s0.wp.com/wp-content/plugins/gutenberg-core/v19.8.0/build/hooks/index.min.js?m=1733324323i&amp;ver=84e753e2b66eb7028d38" id="wp-hooks-js"></script>
<script crossorigin="anonymous" src="https://s0.wp.com/wp-content/plugins/gutenberg-core/v19.8.0/build/i18n/index.min.js?m=1733324323i&amp;ver=bd5a2533e717a1043151" id="wp-i18n-js"></script>
<script id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
</script>
<script id="wpcom-actionbar-placeholder-js-extra">
var actionbardata = {"siteID":"198489407","postID":"0","siteURL":"https:\/\/blog.pocketcasts.com","xhrURL":"https:\/\/blog.pocketcasts.com\/wp-admin\/admin-ajax.php","nonce":"a29a5d105d","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https:\/\/s0.wp.com\/wp-content\/js\/wpcom-proxy-request.js?ver=20211021","i18n":{"followedText":"New posts from this site will now appear in your <a href=\"https:\/\/wordpress.com\/read\">Reader<\/a>","foldBar":"Collapse this bar","unfoldBar":"Expand this bar"}};
</script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://pocketcastsblog.wordpress.com/xmlrpc.php?rsd">
<meta name="generator" content="WordPress.com">
<link rel="shortlink" href="https://wp.me/dqQa3">
	<style>
		@font-face {
			font-family: Recoleta;
			font-display: swap;
			src: url('https://s1.wp.com/i/fonts/recoleta/400.woff2')
		}
	</style>
	
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website">
<meta property="og:title" content="Pocket Casts Blog">
<meta property="og:url" content="https://blog.pocketcasts.com/">
<meta property="og:site_name" content="Pocket Casts Blog">
<meta property="og:image" content="https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=200">
<meta property="og:image:width" content="200">
<meta property="og:image:height" content="200">
<meta property="og:image:alt" content="">
<meta property="og:locale" content="en_US">
<meta name="twitter:app:name:iphone" content="Jetpack">
<meta name="twitter:app:id:iphone" content="1565481562">
<meta name="twitter:app:name:ipad" content="Jetpack">
<meta name="twitter:app:id:ipad" content="1565481562">
<meta name="twitter:app:name:googleplay" content="Jetpack">
<meta name="twitter:app:id:googleplay" content="com.jetpack.android">

<!-- End Jetpack Open Graph Tags -->
<link rel="search" type="application/opensearchdescription+xml" href="https://blog.pocketcasts.com/osd.xml" title="Pocket Casts Blog">
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com">
<script type="importmap" id="wp-importmap">
{"imports":{"@wordpress\/interactivity":"https:\/\/s0.wp.com\/wp-content\/plugins\/gutenberg-core\/v19.8.0\/build-module\/interactivity\/index.min.js?ver=63df923685080be7c130"}}
</script>
<script type="module" src="https://s0.wp.com/wp-content/plugins/gutenberg-core/v19.8.0/build-module/block-library/navigation/view.min.js?ver=7b370e821516feba4955" id="@wordpress/block-library/navigation/view-js-module"></script>
<link rel="modulepreload" href="https://s0.wp.com/wp-content/plugins/gutenberg-core/v19.8.0/build-module/interactivity/index.min.js?ver=63df923685080be7c130" id="@wordpress/interactivity-js-modulepreload"><meta name="application-name" content="Pocket Casts Blog"><meta name="msapplication-window" content="width=device-width;height=device-height"><link rel="icon" href="https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=32" sizes="32x32">
<link rel="icon" href="https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=192" sizes="192x192">
<link rel="apple-touch-icon" href="https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=180">
<meta name="msapplication-TileImage" content="https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=270">
			<link rel="stylesheet" id="custom-css-css" type="text/css" href="https://s0.wp.com/?custom-css=1&amp;csblog=dqQa3&amp;cscache=6&amp;csrev=47">
					<!-- Jetpack Google Analytics -->
		<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-RXYF1SWNYC"></script>
		<script>
			window.dataLayer = window.dataLayer || [];
			function gtag() { dataLayer.push( arguments ); }
			gtag( 'js', new Date() );
			gtag( 'config', "G-RXYF1SWNYC" );
					</script>
		<!-- End Jetpack Google Analytics -->
		<link rel="stylesheet" id="gravatar-card-css" href="https://0.gravatar.com/js/hovercards/hovercards.min.css?ver=202451b213a1cbb4e3271ca470eb7790af362ac2e18ce468f8945952c7bd3456d2132e"><link rel="stylesheet" type="text/css" href="https://s0.wp.com/wp-content/mu-plugins/jetpack-plugin/moon/jetpack_vendor/automattic/jetpack-search/build/instant-search/jp-search.chunk-main-payload.css?minify=false&amp;ver=9d1725f327b1ce30525f"><script src="https://s0.wp.com/wp-includes/js/wp-emoji-release.min.js?m=1719498190i&amp;ver=6.8-alpha-59438" defer=""></script><style>:root{--cookiebanner-height:100%}.a8c-cookie-banner.a8c-cookie-banner-v1{display:flex;justify-content:space-between;max-width:800px}@media only screen and (max-width: 659px){.a8c-cookie-banner.a8c-cookie-banner-v1{flex-direction:column}.a8c-cookie-banner.a8c-cookie-banner-v1 .a8c-cookie-banner__simple-text-description{width:100%}}@media only screen and (max-width: 850px){.a8c-cookie-banner.a8c-cookie-banner-v1{left:25px;right:25px;width:auto;transform:none;gap:10px;align-items:center;max-width:auto}.a8c-cookie-banner.a8c-cookie-banner-v1 .a8c-cookie-banner__simple-text-description{width:100%}}.a8c-cookie-banner{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;display:flex;position:fixed;flex-shrink:0;top:auto;left:50%;transform:translate(-50%);max-width:900px;width:100%;bottom:25px;margin:0;max-height:calc(var(--cookiebanner-height) - 90px);z-index:1000000;padding:20px;background-color:#fff;box-shadow:0px 8px 16px rgba(0,0,0,.2),0px 1px 3px rgba(0,0,0,.15),0px 1px 0px rgba(0,0,0,.05);border-radius:6px;animation:fadeIn .6s;box-sizing:border-box;color:#000}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.a8c-cookie-banner *{box-sizing:border-box;margin:0;padding:0}.a8c-cookie-banner p{font-size:14px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;font-weight:normal;line-height:18px}.a8c-cookie-banner p .no-wrap{white-space:nowrap}.a8c-cookie-banner p:not(:first-child){margin:18px 0 0 0}.a8c-cookie-banner a{color:#117ac9;font-weight:normal;text-decoration:underline}.a8c-cookie-banner a:hover,.a8c-cookie-banner a:active,.a8c-cookie-banner a:focus{text-decoration:none}.a8c-cookie-banner .a8c-cookie-banner__simple-text-description{color:#000;font-weight:400;font-size:14px;line-height:18px}.a8c-cookie-banner .a8c-cookie-banner__simple-options{display:flex;justify-content:space-between;gap:25px}.a8c-cookie-banner .a8c-cookie-banner__simple-options .a8c-cookie-banner__button-container{display:flex;flex-direction:row;align-items:center;justify-content:flex-end}.a8c-cookie-banner .a8c-cookie-banner__options-selection{display:none;flex-direction:column;overflow-y:auto}.a8c-cookie-banner .a8c-cookie-banner__options-selection .a8c-cookie-banner__options-lead-text{margin-bottom:12px;padding-bottom:12px;flex:1}.a8c-cookie-banner .a8c-cookie-banner__options-selection .a8c-cookie-banner__bucket-container{padding-bottom:10px;display:grid;grid-template-columns:40px 6fr;grid-column-gap:10px}.a8c-cookie-banner .a8c-cookie-banner__options-selection .a8c-cookie-banner__bucket-container .a8c-cookie-banner__option-description{display:flex;flex-direction:column;font-size:14px;line-height:22px}.a8c-cookie-banner .a8c-cookie-banner__options-selection .a8c-cookie-banner__bucket-container .a8c-cookie-banner__checkbox-container{margin-top:3px}.a8c-cookie-banner .a8c-cookie-banner__options-selection .a8c-cookie-banner__bucket-container p{color:#000;margin-top:5px}.a8c-cookie-banner .a8c-cookie-banner__options-selection input[type=checkbox]{appearance:none;-webkit-appearance:none;-moz-appearance:none;position:relative;border:0;outline:0;cursor:pointer;box-sizing:unset;transition:ease .3s;-webkit-transition:ease .3s;-moz-transition:ease .3s;-o-transition:ease .3s;height:24px;width:36px;background:rgba(0,0,0,0)}.a8c-cookie-banner .a8c-cookie-banner__options-selection input[type=checkbox]:after{content:"";width:36px;height:18px;display:block;background:rgba(0,0,0,0);border-radius:18px;border:1px solid #000;clear:both;box-sizing:content-box}.a8c-cookie-banner .a8c-cookie-banner__options-selection input[type=checkbox]:before{content:"";width:12px;height:12px;display:block;position:absolute;left:4px;top:4px;border-radius:50%;background-color:#000;box-sizing:content-box}.a8c-cookie-banner .a8c-cookie-banner__options-selection input[type=checkbox]:checked:before{left:22px;background-color:#fff}.a8c-cookie-banner .a8c-cookie-banner__options-selection input[type=checkbox]:checked:after{background:#117ac9;border-color:#117ac9}.a8c-cookie-banner .a8c-cookie-banner__options-selection input[type=checkbox]:disabled:after{background-color:#aaa;border-color:#aaa}.a8c-cookie-banner a.a8c-cookie-banner__ok-button,.a8c-cookie-banner a.a8c-cookie-banner__accept-all-button,.a8c-cookie-banner a.a8c-cookie-banner__customize-button,.a8c-cookie-banner a.a8c-cookie-banner__accept-selection-button{min-width:110px;max-width:500px;border-radius:4px;padding:10px;text-align:center;text-decoration:none;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;font-style:normal;font-weight:600;font-size:14px;line-height:20px;border-radius:4px;white-space:nowrap}.a8c-cookie-banner a.a8c-cookie-banner__customize-button{color:#000;background-color:#fff}.a8c-cookie-banner a.a8c-cookie-banner__ok-button,.a8c-cookie-banner a.a8c-cookie-banner__accept-all-button,.a8c-cookie-banner a.a8c-cookie-banner__accept-selection-button{color:#fff;background:#117ac9}.a8c-cookie-banner a.a8c-cookie-banner__accept-selection-button{display:block;width:auto;min-width:150px;margin:18px auto 0 auto}@media only screen and (max-width: 900px){.a8c-cookie-banner .a8c-cookie-banner__simple-text-description{width:100%}.a8c-cookie-banner .a8c-cookie-banner__simple-options{flex-direction:column;gap:0}.a8c-cookie-banner .a8c-cookie-banner__simple-options .a8c-cookie-banner__button-container{align-self:flex-end;align-items:baseline}.a8c-cookie-banner .a8c-cookie-banner__simple-text-description{max-width:none;width:auto}.a8c-cookie-banner a.a8c-cookie-banner__ok-button,.a8c-cookie-banner a.a8c-cookie-banner__customize-button,.a8c-cookie-banner a.a8c-cookie-banner__accept-all-button,.a8c-cookie-banner a.a8c-cookie-banner__accept-selection-button{display:block;position:static;transform:none;width:auto;margin:0 auto}.a8c-cookie-banner a.a8c-cookie-banner__accept-all-button{margin:5px auto 0 auto}.a8c-cookie-banner a.a8c-cookie-banner__ok-button,.a8c-cookie-banner a.a8c-cookie-banner__customize-button,.a8c-cookie-banner a.a8c-cookie-banner__accept-selection-button{margin:18px auto 0 auto}.a8c-cookie-banner a.a8c-cookie-banner__accept-selection-button{min-width:150px}}</style><style>.a8c-do-not-sell,.a8c-do-not-sell *{box-sizing:border-box;z-index:50002}.a8c-do-not-sell{display:flex;position:fixed;top:0;left:0;width:100%;height:100%}.a8c-do-not-sell__dialog{position:relative;display:flex;flex-direction:column;position:relative;margin:auto;width:100%;max-width:700px;height:inherit;max-height:800px;background-color:#fff;z-index:1;overflow-y:auto;box-shadow:0px 8px 16px rgba(0,0,0,.2),0px 1px 3px rgba(0,0,0,.15),0px 1px 0px rgba(0,0,0,.05);border-radius:6px}.a8c-do-not-sell__header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #e0e0e0;padding:1rem 2rem}.a8c-do-not-sell__close-button{background:none;border:none;margin:0;padding:0}.a8c-do-not-sell__close-button:after{display:inline-block;content:"×";font-size:28px;transform:translateX(1px)}.a8c-do-not-sell__title{font-size:24px;margin:0;font-family:sans-serif}.a8c-do-not-sell__content{display:flex;flex-direction:column;margin:0 2rem 1rem}.a8c-do-not-sell__content p{font-size:15px;font-family:sans-serif;font-weight:normal;line-height:150%;margin:1em 0}.a8c-do-not-sell__footer{display:flex;justify-content:flex-end;border-top:1px solid #e0e0e0;padding:1rem 2rem}.a8c-do-not-sell__preference{display:flex;align-items:center;border-top:1px solid #e0e0e0;padding:1rem 2rem;font-size:18px}#a8c-do-not-sell.a8c-do-not-sell__checkbox{margin-right:1rem;appearance:checkbox;width:18px;height:18px}.a8c-do-not-sell__button{color:#fff;background-color:rgba(0,0,0,.8);border:1px solid #e0e0e0;padding:10px;border-radius:4px;text-align:center}.a8c-do-not-sell__overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.2);z-index:0}</style><link href="https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.css?v=20241015" type="text/css" rel="stylesheet"></head>

<body class="home blog wp-custom-logo wp-embed-responsive jps-theme-pub/blockbase customizer-styles-applied jetpack-reblog-enabled" style="opacity: 1;">

<div class="wp-site-blocks"><header class="wp-block-template-part">
<div class="wp-block-group alignwide site-header is-content-justification-left is-layout-flex wp-container-core-group-is-layout-1 wp-block-group-is-layout-flex" style="padding-top:1em;padding-right:0px;padding-bottom:1em;padding-left:0px"><div class="wp-block-site-logo"><a href="https://blog.pocketcasts.com/" class="custom-logo-link" rel="home" aria-current="page"><img width="259" height="64" src="https://blog.pocketcasts.com/wp-content/uploads/2021/11/cropped-blog-header-1.png" class="custom-logo" alt="Pocket Casts Blog" decoding="async" srcset="https://blog.pocketcasts.com/wp-content/uploads/2021/11/cropped-blog-header-1.png?w=256&amp;h=64 256w, https://blog.pocketcasts.com/wp-content/uploads/2021/11/cropped-blog-header-1.png?w=512&amp;h=128 512w, https://blog.pocketcasts.com/wp-content/uploads/2021/11/cropped-blog-header-1.png?w=150&amp;h=38 150w, https://blog.pocketcasts.com/wp-content/uploads/2021/11/cropped-blog-header-1.png?w=300&amp;h=75 300w" sizes="(max-width: 259px) 100vw, 259px" data-attachment-id="2599" data-permalink="https://blog.pocketcasts.com/cropped-blog-header-1-png/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2021/11/cropped-blog-header-1.png" data-orig-size="544,136" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="cropped-blog-header-1.png" data-image-description="<p>https://pocketcastsblog.files.wordpress.com/2021/11/cropped-blog-header-1.png</p>
" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2021/11/cropped-blog-header-1.png?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2021/11/cropped-blog-header-1.png?w=544"></a></div>

<nav style="font-style:normal;font-weight:400;" class="has-small-font-size is-responsive items-justified-left is-style-blockbase-navigation-improved-responsive wp-block-navigation is-horizontal is-content-justification-left is-layout-flex wp-container-core-navigation-is-layout-1 wp-block-navigation-is-layout-flex" aria-label="Navigation" data-wp-interactive="core/navigation" data-wp-context="{&quot;overlayOpenedBy&quot;:{&quot;click&quot;:false,&quot;hover&quot;:false,&quot;focus&quot;:false},&quot;type&quot;:&quot;overlay&quot;,&quot;roleAttribute&quot;:&quot;&quot;,&quot;ariaLabel&quot;:&quot;Menu&quot;}"><button aria-haspopup="dialog" aria-label="Open menu" class="wp-block-navigation__responsive-container-open " data-wp-on-async--click="actions.openMenuOnClick" data-wp-on--keydown="actions.handleMenuKeydown"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"><rect x="4" y="7.5" width="16" height="1.5"></rect><rect x="4" y="15" width="16" height="1.5"></rect></svg></button>
				<div class="wp-block-navigation__responsive-container" id="modal-1" data-wp-class--has-modal-open="state.isMenuOpen" data-wp-class--is-menu-open="state.isMenuOpen" data-wp-watch="callbacks.initMenu" data-wp-on--keydown="actions.handleMenuKeydown" data-wp-on-async--focusout="actions.handleMenuFocusout" tabindex="-1">
					<div class="wp-block-navigation__responsive-close" tabindex="-1">
						<div class="wp-block-navigation__responsive-dialog" data-wp-bind--aria-modal="state.ariaModal" data-wp-bind--aria-label="state.ariaLabel" data-wp-bind--role="state.roleAttribute">
							<button aria-label="Close menu" class="wp-block-navigation__responsive-container-close" data-wp-on-async--click="actions.closeMenuOnClick"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" aria-hidden="true" focusable="false"><path d="m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z"></path></svg></button>
							<div class="wp-block-navigation__responsive-container-content" data-wp-watch="callbacks.focusFirstElement" id="modal-1-content">
								<ul style="font-style:normal;font-weight:400;" class="wp-block-navigation__container has-small-font-size is-responsive items-justified-left is-style-blockbase-navigation-improved-responsive wp-block-navigation has-small-font-size"><li class="has-small-font-size wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="/category/guest-lists/"><span class="wp-block-navigation-item__label">Guest Lists</span></a></li><li class="has-small-font-size wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="/category/feature/"><span class="wp-block-navigation-item__label">App Features</span></a></li><li class="has-small-font-size wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="/category/behind-the-podcast/"><span class="wp-block-navigation-item__label">Behind the Podcast</span></a></li><li class="has-small-font-size wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="/category/news/"><span class="wp-block-navigation-item__label">News</span></a></li><li class="has-small-font-size wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="https://pocketcastsblog.wordpress.com/press/"><span class="wp-block-navigation-item__label">Press</span></a></li></ul>
							</div>
						</div>
					</div>
				</div></nav>


<figure class="wp-block-image size-full"><a class="jetpack-search-filter__link" href="#"><img loading="lazy" width="24" height="24" src="https://pocketcastsblog.files.wordpress.com/2022/12/search-icon.png" alt="" class="wp-image-6822"></a></figure>
</div>
</header>


<div class="wp-block-query alignwide is-layout-constrained wp-container-core-query-is-layout-1 wp-block-query-is-layout-constrained"><ul class="is-flex-container columns-2 alignwide wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow"><li class="wp-block-post post-8607 post type-post status-publish format-standard has-post-thumbnail hentry category-guest-lists tag-podcast tag-podcasting tag-podcasts">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/12/05/brian-reed/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/12/blog-post.png?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Brian Reed" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/12/blog-post.png?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/12/blog-post.png?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/12/blog-post.png?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/12/blog-post.png?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/12/blog-post.png?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8620" data-permalink="https://blog.pocketcasts.com/2024/12/05/brian-reed/blog-post-87/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/12/blog-post.png" data-orig-size="5248,1472" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Blog Post" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/12/blog-post.png?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/12/blog-post.png?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-2 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/guest-lists/" rel="tag">Guest List</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/12/05/brian-reed/" target="_self">Brian Reed</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Pocket Casts</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-12-05T02:26:37+10:30"><a href="https://blog.pocketcasts.com/2024/12/05/brian-reed/">December 5, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8532 post type-post status-publish format-standard has-post-thumbnail hentry category-feature category-news tag-apps tag-pocket-casts tag-podcasts tag-queue tag-shuffle tag-up-next tag-web">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/11/29/shuffle/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/11/shuffle_header.png?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Introducing Shuffle for Your Up Next Queue!&nbsp;🎲" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/11/shuffle_header.png?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/11/shuffle_header.png?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/11/shuffle_header.png?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/11/shuffle_header.png?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/11/shuffle_header.png?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8539" data-permalink="https://blog.pocketcasts.com/2024/11/29/shuffle/shuffle_header/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/11/shuffle_header.png" data-orig-size="2624,736" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Shuffle_Header" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/11/shuffle_header.png?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/11/shuffle_header.png?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-4 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/feature/" rel="tag">App Feature</a><span class="wp-block-post-terms__separator">, </span><a href="https://blog.pocketcasts.com/category/news/" rel="tag">News</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/11/29/shuffle/" target="_self">Introducing Shuffle for Your Up Next Queue!&nbsp;<img draggable="false" role="img" class="emoji" alt="🎲" src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/svg/1f3b2.svg"></a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-2 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/bccf4139ef409cc0c42a1755dd26ca36c389f98592da028444b7aceb783ce45e?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/bccf4139ef409cc0c42a1755dd26ca36c389f98592da028444b7aceb783ce45e?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/bccf4139ef409cc0c42a1755dd26ca36c389f98592da028444b7aceb783ce45e?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/bccf4139ef409cc0c42a1755dd26ca36c389f98592da028444b7aceb783ce45e?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/bccf4139ef409cc0c42a1755dd26ca36c389f98592da028444b7aceb783ce45e?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/bccf4139ef409cc0c42a1755dd26ca36c389f98592da028444b7aceb783ce45e?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Matías Surdi</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-11-29T01:11:50+10:30"><a href="https://blog.pocketcasts.com/2024/11/29/shuffle/">November 29, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8472 post type-post status-publish format-standard has-post-thumbnail hentry category-guest-lists tag-guest-lists tag-guest-list tag-kcrw tag-npr tag-pocket-casts tag-podcast tag-podcaster tag-podcasting tag-podcasts tag-reporter tag-siriusxm">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/11/21/sam-sanders/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post-1.png?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Sam Sanders" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post-1.png?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post-1.png?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post-1.png?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post-1.png?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post-1.png?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8488" data-permalink="https://blog.pocketcasts.com/2024/11/21/sam-sanders/blog-post-86/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post-1.png" data-orig-size="5248,1472" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Blog Post" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post-1.png?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post-1.png?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-6 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/guest-lists/" rel="tag">Guest List</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/11/21/sam-sanders/" target="_self">Sam Sanders</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-3 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Pocket Casts</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-11-21T19:31:05+10:30"><a href="https://blog.pocketcasts.com/2024/11/21/sam-sanders/">November 21, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8456 post type-post status-publish format-standard has-post-thumbnail hentry category-guest-lists tag-content-creation tag-content-marketing tag-digital-marketing tag-guest-lists tag-marketing tag-pocket-casts tag-podcast tag-podcasts">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/11/07/joni-deutsch/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post.png?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Joni Deutsch" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post.png?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post.png?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post.png?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post.png?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post.png?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8467" data-permalink="https://blog.pocketcasts.com/2024/11/07/joni-deutsch/blog-post-85/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post.png" data-orig-size="5248,1472" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Blog Post" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post.png?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/11/blog-post.png?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-8 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/guest-lists/" rel="tag">Guest List</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/11/07/joni-deutsch/" target="_self">Joni Deutsch</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-4 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Pocket Casts</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-11-07T04:50:41+10:30"><a href="https://blog.pocketcasts.com/2024/11/07/joni-deutsch/">November 7, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8432 post type-post status-publish format-standard has-post-thumbnail hentry category-guest-lists tag-audio-dramas tag-author tag-danny-robins tag-ghost-stories tag-ghosts tag-halloween tag-journalist tag-paranormal tag-paranormal-podcasts tag-pocket-casts tag-podcast tag-podcaster tag-podcasting tag-podcasts tag-uncanny tag-writer">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/10/24/danny-robins/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post-2.png?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Danny Robins" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post-2.png?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post-2.png?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post-2.png?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post-2.png?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post-2.png?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8446" data-permalink="https://blog.pocketcasts.com/2024/10/24/danny-robins/blog-post-84/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post-2.png" data-orig-size="5248,1472" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Blog Post" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post-2.png?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post-2.png?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-10 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/guest-lists/" rel="tag">Guest List</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/10/24/danny-robins/" target="_self">Danny Robins</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-5 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Pocket Casts</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-10-24T23:06:00+10:30"><a href="https://blog.pocketcasts.com/2024/10/24/danny-robins/">October 24, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8415 post type-post status-publish format-standard has-post-thumbnail hentry category-feature category-news">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/10/16/listening-history/" target="_self"><img width="1023" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/10/search-improvements.webp?w=1023" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Introducing In-App Search for Your Listening&nbsp;History" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/10/search-improvements.webp 1023w, https://blog.pocketcasts.com/wp-content/uploads/2024/10/search-improvements.webp?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/10/search-improvements.webp?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/10/search-improvements.webp?w=768 768w" sizes="(max-width: 1023px) 100vw, 1023px" data-attachment-id="8429" data-permalink="https://blog.pocketcasts.com/2024/10/16/listening-history/search-improvements-2/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/10/search-improvements.webp" data-orig-size="1023,287" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="search-improvements" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/10/search-improvements.webp?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/10/search-improvements.webp?w=1023"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-12 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/feature/" rel="tag">App Feature</a><span class="wp-block-post-terms__separator">, </span><a href="https://blog.pocketcasts.com/category/news/" rel="tag">News</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/10/16/listening-history/" target="_self">Introducing In-App Search for Your Listening&nbsp;History</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-6 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/5eaf2f7fe9fef7d0a5c3fcc8bfbf5e098fed67fe0cc7d54296bb2026ac10fbf8?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/5eaf2f7fe9fef7d0a5c3fcc8bfbf5e098fed67fe0cc7d54296bb2026ac10fbf8?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/5eaf2f7fe9fef7d0a5c3fcc8bfbf5e098fed67fe0cc7d54296bb2026ac10fbf8?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/5eaf2f7fe9fef7d0a5c3fcc8bfbf5e098fed67fe0cc7d54296bb2026ac10fbf8?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/5eaf2f7fe9fef7d0a5c3fcc8bfbf5e098fed67fe0cc7d54296bb2026ac10fbf8?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/5eaf2f7fe9fef7d0a5c3fcc8bfbf5e098fed67fe0cc7d54296bb2026ac10fbf8?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">ashiagr</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-10-16T20:43:30+10:30"><a href="https://blog.pocketcasts.com/2024/10/16/listening-history/">October 16, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8395 post type-post status-publish format-standard has-post-thumbnail hentry category-guest-lists tag-ghosts tag-guest-lists tag-horror tag-paranormal tag-pocket-casts tag-podcast tag-podcaster tag-podcasting tag-podcasts">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/10/10/dan-and-lynze/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post.png?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Dan Cummins &amp; Lynze&nbsp;Cummins" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post.png?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post.png?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post.png?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post.png?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post.png?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8410" data-permalink="https://blog.pocketcasts.com/2024/10/10/dan-and-lynze/blog-post-82/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post.png" data-orig-size="3936,1104" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Blog Post" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post.png?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/10/blog-post.png?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-14 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/guest-lists/" rel="tag">Guest List</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/10/10/dan-and-lynze/" target="_self">Dan Cummins &amp; Lynze&nbsp;Cummins</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-7 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Pocket Casts</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-10-10T22:53:26+10:30"><a href="https://blog.pocketcasts.com/2024/10/10/dan-and-lynze/">October 10, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8368 post type-post status-publish format-standard has-post-thumbnail hentry category-guest-lists tag-60-minutes tag-guest-lists tag-journalism tag-journalist tag-pocket-casts tag-podcast tag-podcaster tag-podcasting tag-podcasts">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/09/26/seth-doane/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post-1.png?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Seth Doane" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post-1.png?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post-1.png?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post-1.png?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post-1.png?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post-1.png?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8382" data-permalink="https://blog.pocketcasts.com/2024/09/26/seth-doane/blog-post-81/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post-1.png" data-orig-size="3936,1104" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Blog Post" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post-1.png?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post-1.png?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-16 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/guest-lists/" rel="tag">Guest List</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/09/26/seth-doane/" target="_self">Seth Doane</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-8 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Pocket Casts</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-09-26T17:10:10+09:30"><a href="https://blog.pocketcasts.com/2024/09/26/seth-doane/">September 26, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8344 post type-post status-publish format-standard has-post-thumbnail hentry category-guest-lists tag-climate-technology tag-guest-lists tag-healthy-spaces tag-pocket-casts tag-podcaster tag-podcasting tag-podcasts tag-sustainability tag-technology">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/09/19/scott-tew/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post.png?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Scott Tew: Climate &amp; Sustainability&nbsp;Podcasts" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post.png?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post.png?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post.png?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post.png?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post.png?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8356" data-permalink="https://blog.pocketcasts.com/2024/09/19/scott-tew/blog-post-80/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post.png" data-orig-size="2624,736" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Blog Post" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post.png?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/09/blog-post.png?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-18 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/guest-lists/" rel="tag">Guest List</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/09/19/scott-tew/" target="_self">Scott Tew: Climate &amp; Sustainability&nbsp;Podcasts</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-9 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Pocket Casts</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-09-19T02:05:00+09:30"><a href="https://blog.pocketcasts.com/2024/09/19/scott-tew/">September 19, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8312 post type-post status-publish format-standard has-post-thumbnail hentry category-feature category-news tag-clips tag-pocket-casts tag-podcast-clips tag-podcaster tag-podcasting tag-podcasts tag-sharing">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/09/19/sharing/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/09/sharing.png?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Clip, Share, Repeat" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/09/sharing.png?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/09/sharing.png?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/09/sharing.png?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/09/sharing.png?w=768 768w, https://blog.pocketcasts.com/wp-content/uploads/2024/09/sharing.png 1312w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8343" data-permalink="https://blog.pocketcasts.com/2024/09/19/sharing/sharing-2/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/09/sharing.png" data-orig-size="1312,368" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Sharing" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/09/sharing.png?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/09/sharing.png?w=1312"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-20 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/feature/" rel="tag">App Feature</a><span class="wp-block-post-terms__separator">, </span><a href="https://blog.pocketcasts.com/category/news/" rel="tag">News</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/09/19/sharing/" target="_self">Clip, Share, Repeat</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-10 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://1.gravatar.com/avatar/d2bcdccd744fac6f1230b8b1b3c53b85283dc5a4d95476b86d15d5f8d4aec5e2?s=24&amp;d=identicon&amp;r=G" srcset="https://1.gravatar.com/avatar/d2bcdccd744fac6f1230b8b1b3c53b85283dc5a4d95476b86d15d5f8d4aec5e2?s=24&amp;d=identicon&amp;r=G 1x, https://1.gravatar.com/avatar/d2bcdccd744fac6f1230b8b1b3c53b85283dc5a4d95476b86d15d5f8d4aec5e2?s=36&amp;d=identicon&amp;r=G 1.5x, https://1.gravatar.com/avatar/d2bcdccd744fac6f1230b8b1b3c53b85283dc5a4d95476b86d15d5f8d4aec5e2?s=48&amp;d=identicon&amp;r=G 2x, https://1.gravatar.com/avatar/d2bcdccd744fac6f1230b8b1b3c53b85283dc5a4d95476b86d15d5f8d4aec5e2?s=72&amp;d=identicon&amp;r=G 3x, https://1.gravatar.com/avatar/d2bcdccd744fac6f1230b8b1b3c53b85283dc5a4d95476b86d15d5f8d4aec5e2?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Emmeline Berry</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-09-19T01:09:32+09:30"><a href="https://blog.pocketcasts.com/2024/09/19/sharing/">September 19, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8297 post type-post status-publish format-standard has-post-thumbnail hentry category-guest-lists tag-business tag-ceos tag-entrepreneur tag-founders tag-investing tag-pocket-casts tag-podcaster tag-podcasting tag-podcasts tag-tech tag-technology tag-webby tag-webby-awards">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/08/22/dan-blumberg/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post-1.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Dan Blumberg" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post-1.jpg?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post-1.jpg?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post-1.jpg?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post-1.jpg?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post-1.jpg?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8310" data-permalink="https://blog.pocketcasts.com/2024/08/22/dan-blumberg/blog-post-78/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post-1.jpg" data-orig-size="5248,1472" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Blog Post" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post-1.jpg?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post-1.jpg?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-22 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/guest-lists/" rel="tag">Guest List</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/08/22/dan-blumberg/" target="_self">Dan Blumberg</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-11 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Pocket Casts</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-08-22T17:39:43+09:30"><a href="https://blog.pocketcasts.com/2024/08/22/dan-blumberg/">August 22, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8275 post type-post status-publish format-standard has-post-thumbnail hentry category-feature category-news tag-pocket-casts tag-podcaster tag-podcasts">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/08/20/podcast-ratings/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/08/ratings_blog.png?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="⭐️ Rate Your Favorite Podcasts in Pocket Casts&nbsp;⭐️" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/08/ratings_blog.png?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/08/ratings_blog.png?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/08/ratings_blog.png?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/08/ratings_blog.png?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/08/ratings_blog.png?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8277" data-permalink="https://blog.pocketcasts.com/2024/08/20/podcast-ratings/ratings_blog/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/08/ratings_blog.png" data-orig-size="2624,736" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Ratings_blog" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/08/ratings_blog.png?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/08/ratings_blog.png?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-24 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/feature/" rel="tag">App Feature</a><span class="wp-block-post-terms__separator">, </span><a href="https://blog.pocketcasts.com/category/news/" rel="tag">News</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/08/20/podcast-ratings/" target="_self"><img draggable="false" role="img" class="emoji" alt="⭐️" src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/svg/2b50.svg"> Rate Your Favorite Podcasts in Pocket Casts&nbsp;<img draggable="false" role="img" class="emoji" alt="⭐️" src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/svg/2b50.svg"></a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-12 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://1.gravatar.com/avatar/d2bcdccd744fac6f1230b8b1b3c53b85283dc5a4d95476b86d15d5f8d4aec5e2?s=24&amp;d=identicon&amp;r=G" srcset="https://1.gravatar.com/avatar/d2bcdccd744fac6f1230b8b1b3c53b85283dc5a4d95476b86d15d5f8d4aec5e2?s=24&amp;d=identicon&amp;r=G 1x, https://1.gravatar.com/avatar/d2bcdccd744fac6f1230b8b1b3c53b85283dc5a4d95476b86d15d5f8d4aec5e2?s=36&amp;d=identicon&amp;r=G 1.5x, https://1.gravatar.com/avatar/d2bcdccd744fac6f1230b8b1b3c53b85283dc5a4d95476b86d15d5f8d4aec5e2?s=48&amp;d=identicon&amp;r=G 2x, https://1.gravatar.com/avatar/d2bcdccd744fac6f1230b8b1b3c53b85283dc5a4d95476b86d15d5f8d4aec5e2?s=72&amp;d=identicon&amp;r=G 3x, https://1.gravatar.com/avatar/d2bcdccd744fac6f1230b8b1b3c53b85283dc5a4d95476b86d15d5f8d4aec5e2?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Emmeline Berry</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-08-20T21:50:01+09:30"><a href="https://blog.pocketcasts.com/2024/08/20/podcast-ratings/">August 20, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8253 post type-post status-publish format-standard has-post-thumbnail hentry category-guest-lists tag-guest-lists tag-pocket-casts tag-podcaster tag-podcasting tag-podcasts">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/08/06/alex-sujong-laughlin/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Alex Sujong Laughlin" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post.jpg?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post.jpg?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post.jpg?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post.jpg?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post.jpg?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8268" data-permalink="https://blog.pocketcasts.com/2024/08/06/alex-sujong-laughlin/blog-post-77/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post.jpg" data-orig-size="5248,1472" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Blog Post" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post.jpg?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/08/blog-post.jpg?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-26 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/guest-lists/" rel="tag">Guest List</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/08/06/alex-sujong-laughlin/" target="_self">Alex Sujong Laughlin</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-13 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Pocket Casts</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-08-06T06:14:34+09:30"><a href="https://blog.pocketcasts.com/2024/08/06/alex-sujong-laughlin/">August 6, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8229 post type-post status-publish format-standard has-post-thumbnail hentry category-guest-lists">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/07/30/meklit-hadero/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-4.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Meklit Hadero" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-4.jpg?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-4.jpg?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-4.jpg?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-4.jpg?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-4.jpg?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8252" data-permalink="https://blog.pocketcasts.com/2024/07/30/meklit-hadero/blog-post-76/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-4.jpg" data-orig-size="5248,1472" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Blog Post" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-4.jpg?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-4.jpg?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-28 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/guest-lists/" rel="tag">Guest List</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/07/30/meklit-hadero/" target="_self">Meklit Hadero</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-14 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Pocket Casts</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-07-30T23:54:06+09:30"><a href="https://blog.pocketcasts.com/2024/07/30/meklit-hadero/">July 30, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8172 post type-post status-publish format-standard has-post-thumbnail hentry category-guest-lists tag-guest-lists tag-pocket-casts tag-podcaster tag-podcasting tag-podcasts tag-tech tag-technology">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/07/17/noah-labhart/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-1.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Noah Labhart" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-1.jpg?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-1.jpg?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-1.jpg?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-1.jpg?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-1.jpg?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8219" data-permalink="https://blog.pocketcasts.com/2024/07/17/noah-labhart/blog-post-73/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-1.jpg" data-orig-size="5248,1472" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Blog Post" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-1.jpg?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post-1.jpg?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-30 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/guest-lists/" rel="tag">Guest List</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/07/17/noah-labhart/" target="_self">Noah Labhart</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-15 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Pocket Casts</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-07-17T02:26:20+09:30"><a href="https://blog.pocketcasts.com/2024/07/17/noah-labhart/">July 17, 2024</a></time></div></div>
</div>
</div>

</li><li class="wp-block-post post-8195 post type-post status-publish format-standard has-post-thumbnail hentry category-guest-lists tag-author tag-books tag-filmmaker tag-guest-lists tag-pocket-casts tag-podcaster tag-podcasting tag-podcasts tag-reading tag-writer">
<figure class="alignwide wp-block-post-featured-image"><a href="https://blog.pocketcasts.com/2024/07/02/adriana-trigiani/" target="_self"><img width="1024" height="287" src="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Adriana Trigiani" decoding="async" loading="lazy" style="object-fit:cover;" srcset="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post.jpg?w=1024 1024w, https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post.jpg?w=2048 2048w, https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post.jpg?w=150 150w, https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post.jpg?w=300 300w, https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post.jpg?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="8206" data-permalink="https://blog.pocketcasts.com/2024/07/02/adriana-trigiani/blog-post-72/" data-orig-file="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post.jpg" data-orig-size="5248,1472" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Blog Post" data-image-description="" data-image-caption="" data-medium-file="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post.jpg?w=300" data-large-file="https://blog.pocketcasts.com/wp-content/uploads/2024/07/blog-post.jpg?w=2048"></a></figure>


<div class="wp-block-group entry-meta mb-0 mt-0 is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-32 wp-block-group-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>


<div style="color:#999999;font-size:14px" class="taxonomy-category has-text-align-center has-link-color is-style-default wp-elements-216b3871dd9ee198249762e96756845d wp-block-post-terms has-text-color"><a href="https://blog.pocketcasts.com/category/guest-lists/" rel="tag">Guest List</a></div>


<p class="mb-0 mt-0 has-text-color" style="color:#999999;font-size:14px;">—</p>
</div>


<h2 style="font-style:normal;font-weight:600;line-height:1.2;letter-spacing:-0.02em;" class="has-text-align-center entry-title wp-block-post-title has-normal-font-size"><a href="https://blog.pocketcasts.com/2024/07/02/adriana-trigiani/" target="_self">Adriana Trigiani</a></h2>


<div style="height:32px;" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-right:16px;padding-bottom:16px;padding-left:16px;">
<hr class="wp-block-separator has-text-color has-background is-style-wide" style="background-color:#f0f0f0;color:#f0f0f0;">



<div class="wp-block-columns is-not-stacked-on-mobile has-foreground-color has-text-color has-link-color wp-elements-906798233c39c19f01d2df5d08fa7470 is-layout-flex wp-container-core-columns-is-layout-16 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"><div style="color:#999999; font-size:12px;" class="has-text-align-left wp-block-post-author has-text-color"><div class="wp-block-post-author__avatar"><img alt="" src="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G" srcset="https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=24&amp;d=identicon&amp;r=G 1x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=36&amp;d=identicon&amp;r=G 1.5x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=48&amp;d=identicon&amp;r=G 2x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=72&amp;d=identicon&amp;r=G 3x, https://2.gravatar.com/avatar/e6ca00d081e22f829c860e1422b0aed45dc38f73ee23e65379d759253cc3c7df?s=96&amp;d=identicon&amp;r=G 4x" class="avatar avatar-24 wp-hovercard-attachment grav-hashed grav-hijack" height="24" width="24" loading="lazy" decoding="async"></div><div class="wp-block-post-author__content"><p class="wp-block-post-author__name">Pocket Casts</p></div></div></div>



<div class="wp-block-column is-vertically-aligned-center has-text-color is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;"><div style="color:#999999; font-size:12px;" class="has-text-align-right has-link-color wp-elements-466c2d56461c0c2a18773357527e9bb9 wp-block-post-date has-text-color"><time datetime="2024-07-02T15:02:00+09:30"><a href="https://blog.pocketcasts.com/2024/07/02/adriana-trigiani/">July 2, 2024</a></time></div></div>
</div>
</div>

</li></ul>

<nav class="wp-block-query-pagination is-layout-flex wp-block-query-pagination-is-layout-flex" aria-label="Pagination">


<div class="wp-block-query-pagination-numbers"><span aria-current="page" class="page-numbers current">1</span>
<a class="page-numbers" href="?query-35-page=2">2</a>
<a class="page-numbers" href="?query-35-page=3">3</a>
<span class="page-numbers dots">…</span>
<a class="page-numbers" href="?query-35-page=14">14</a></div>

<a href="/?query-35-page=2" class="wp-block-query-pagination-next">Next Page</a>
</nav>


<div class="wp-block-group is-layout-constrained wp-block-group-is-layout-constrained"></div>
</div>


<footer class="site-footer-container wp-block-template-part">
<div class="wp-block-group alignwide is-layout-constrained wp-block-group-is-layout-constrained">
<div class="wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-17 wp-block-columns-is-layout-flex">
<div class="wp-block-column has-text-color has-link-color wp-elements-21eb4e1f1a1fc60d08027ae03944e9ee is-layout-flow wp-block-column-is-layout-flow" style="color:#999999;flex-basis:66%">
<h5 class="wp-block-heading has-text-color" id="recent-posts" style="color:#222222;font-size:12px;text-transform:uppercase"><strong>RECENT POSTS</strong></h5>


<ul class="wp-block-latest-posts__list has-dates wp-block-latest-posts"><li><a class="wp-block-latest-posts__post-title" href="https://blog.pocketcasts.com/2024/12/05/brian-reed/">Brian Reed</a><time datetime="2024-12-05T02:26:37+10:30" class="wp-block-latest-posts__post-date">December 5, 2024</time></li>
<li><a class="wp-block-latest-posts__post-title" href="https://blog.pocketcasts.com/2024/11/29/shuffle/">Introducing Shuffle for Your Up Next Queue!&nbsp;<img draggable="false" role="img" class="emoji" alt="🎲" src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/svg/1f3b2.svg"></a><time datetime="2024-11-29T01:11:50+10:30" class="wp-block-latest-posts__post-date">November 29, 2024</time></li>
<li><a class="wp-block-latest-posts__post-title" href="https://blog.pocketcasts.com/2024/11/21/sam-sanders/">Sam Sanders</a><time datetime="2024-11-21T19:31:05+10:30" class="wp-block-latest-posts__post-date">November 21, 2024</time></li>
<li><a class="wp-block-latest-posts__post-title" href="https://blog.pocketcasts.com/2024/11/07/joni-deutsch/">Joni Deutsch</a><time datetime="2024-11-07T04:50:41+10:30" class="wp-block-latest-posts__post-date">November 7, 2024</time></li>
<li><a class="wp-block-latest-posts__post-title" href="https://blog.pocketcasts.com/2024/10/24/danny-robins/">Danny Robins</a><time datetime="2024-10-24T23:06:00+10:30" class="wp-block-latest-posts__post-date">October 24, 2024</time></li>
</ul></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33%">
<h5 class="wp-block-heading has-text-color" id="about-pocket-casts" style="color:#222222;font-size:12px;text-transform:uppercase"><strong>ABOUT POCKET CASTS</strong></h5>



<p class="has-small-font-size has-text-color has-link-color wp-elements-efc78b8f8d30f474b2bdc08f69f78bf3" style="color:#999999">Pocket Casts is the world’s most powerful podcast platform for iOS and Android, providing next-level listening, search and discovery tools – and it’s free.<br><br>Download now:<br><a href="https://itunes.apple.com/au/app/pocket-casts/id414834813?mt=8&amp;uo=4&amp;at=10l4We">App Store</a><br><a href="https://play.google.com/store/apps/details?id=au.com.shiftyjelly.pocketcasts">Google Play</a></p>



<p class="has-link-color wp-elements-65d32073a574c99226f2315931f0ca05"><a href="https://blog.pocketcasts.com/learn-podcasts/">About</a><br><a href="https://automattic.com/work-with-us/">Careers</a></p>




</div>
</div>



<hr class="wp-block-separator has-text-color has-css-opacity has-background alignwide is-style-wide" style="background-color:#dddddd;color:#dddddd">



<div class="wp-block-group alignwide is-content-justification-left is-nowrap is-layout-flex wp-container-core-group-is-layout-35 wp-block-group-is-layout-flex" style="padding-bottom:50px">
<p style="font-size:14px">© 2024&nbsp;<a href="https://blog.pocketcasts.com/">Pocket Casts</a>. All right Reserved.</p>



<p style="font-size:14px">Proudly Powered by <a href="https://wordpress.org/">WordPress</a></p>



<ul class="wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only is-content-justification-right is-nowrap is-layout-flex wp-container-core-social-links-is-layout-1 wp-block-social-links-is-layout-flex"><li style="color: #333333; " class="wp-social-link wp-social-link-twitter  wp-block-social-link"><a href="https://twitter.com/pocketcasts" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Twitter</span></a></li>

<li style="color: #333333; " class="wp-social-link wp-social-link-feed  wp-block-social-link"><a href="https://blog.pocketcasts.com/rss/" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M2,8.667V12c5.515,0,10,4.485,10,10h3.333C15.333,14.637,9.363,8.667,2,8.667z M2,2v3.333 c9.19,0,16.667,7.477,16.667,16.667H22C22,10.955,13.045,2,2,2z M4.5,17C3.118,17,2,18.12,2,19.5S3.118,22,4.5,22S7,20.88,7,19.5 S5.882,17,4.5,17z"></path></svg><span class="wp-block-social-link-label screen-reader-text">RSS Feed</span></a></li></ul>
</div>
</div>
</footer></div>
<!-- wpcom_wp_footer -->
		
					<!-- A8C Analytics [start] -->
			<script type="text/javascript">
				( function() {
					'use strict';

					var setupAnalytics = function() {
						window.a8cAnalyticsConfig = {"cookieBanner":{"version":"2","cssZIndex":50001,"skipBanner":false,"cookieDomain":"pocketcasts.com","v1CookieName":"sensitive_pixel_option","v2CookieName":"sensitive_pixel_options","v1Text":"Our websites and dashboards use cookies. By continuing, you agree to their use. <a target=\"_blank\" href=\"https:\/\/automattic.com\/cookies\/\">Learn more<\/a>, including how to control cookies.","v2Text":"As an open source company, we take your privacy seriously and want to be as transparent as possible. So: We use cookies to collect some personal data from you (like your browsing data, IP addresses, and other unique identifiers). Some of these cookies we absolutely need in order to make things work, and others you can choose in order to optimize your experience while using our site and services.","v2OptionsText":"Your privacy is critically important to us. We and our partners use, store, and process your personal data to optimize: our <strong>website<\/strong> such as by improving security or conducting analytics, <strong>marketing activities<\/strong> to help deliver relevant marketing or content, and your <strong>user experience<\/strong> such as by remembering your account name, language settings, or cart information, where applicable. You can customize your cookie settings below. Learn more in our <a href=\"https:\/\/support.pocketcasts.com\/article\/privacy-policy\/\" target=\"_blank\">Privacy Policy<\/a>.","v2EssentialOptionHeading":"Required","v2EssentialOptionText":"These cookies are essential for our websites and services to perform basic functions and are necessary for us to operate certain features, like allowing registered users to authenticate and perform account-related functions, storing preferences set by users (like account name, language, and location), and ensuring our services operate properly.","v2AnalyticsOptionHeading":"Analytics","v2AnalyticsOptionText":"These cookies allow us to optimize performance by collecting information on how users interact with our websites.","v2AdvertisingOptionHeading":"Advertising","v2AdvertisingOptionText":"We and our advertising partners set these cookies to provide you with relevant content and to understand that content\u2019s effectiveness.","v1ButtonText":"Got It!","v2CustomizeButtonText":"Customize","v2AcceptAllButtonText":"Accept all","v2AcceptSelectionButtonText":"Accept selection","hiddenConsents":["advertising"],"isLoggedIn":false},"doNotSellDialog":{"contactEmailAddress":"[email protected]"},"adminAnalytics":"analytics-wpcom-admin.php","fireAnalyticsOptions":[]};
					};

					if ( window.defQueue && defQueue.isLOHP && defQueue.isLOHP === 2020 ) {
						defQueue.items.push( setupAnalytics );
					} else {
						setupAnalytics();
					}
				} )();
			</script>

			<script type="text/javascript">
	( function () {
		'use strict';

		// Add listener to loaded dom
		document.addEventListener( 'DOMContentLoaded', function() {
			var ccpa_link = document.querySelectorAll( '.is-ccpa-dnsd-trigger' );
			if ( ccpa_link ) {
				ccpa_link.forEach( function( element ) {
					// Add data attribute to element
					element.setAttribute( 'data-is-ccpa-dnsd-trigger', 1 );
					element.setAttribute( 'data-is-ccpa-dnsd', 1 );
				} );
			}
		} );


		document.addEventListener( 'a8c-analytics:loaded', function () {
			var kit = window.a8cAnalytics.kit;

			// ------- Fire Normal Pixels -------

			if ( kit.doNotTrack() ) {
				return;
			}

			kit.loadGoogleAnalytics();
			ga('create', 'UA-21798583-6', 'auto');
			ga('set', 'anonymizeIp', true);
			ga('send', 'pageview');
		} );

		// CCPA - Do Not Sell My Data.
		document.addEventListener( 'a8c-analytics:loaded-is-ccpa', function ( e ) {
			var isCCPAEligible = JSON.parse(e.detail).isCCPA;

			if ( ! isCCPAEligible ) {
				document.querySelectorAll( '[data-is-ccpa-dnsd]' ).forEach( ( element ) => element.remove() );
				return;
			}

			document.querySelectorAll( '[data-is-ccpa-dnsd]' ).forEach( ( element ) => {
				element.onclick = function( ev ) {
					ev.preventDefault();
					window.a8cAnalytics.dnsd.show();
				};
			} );
		} );
	} )();
</script>

			<script src="https://s0.wp.com/wp-content/mu-plugins/a8c-analytics/a8c-analytics.js?v=1729607242" async="true"></script><script type="text/javascript">
				( function() {
					'use strict';
					var currentScript = document.currentScript;

					var setupAnalytics = function() {
						function getScript() {
							var script = document.createElement( 'script' );
							var prev = currentScript || document.getElementsByTagName( 'script' )[ 0 ];
							script.setAttribute( 'src', "https:\/\/s0.wp.com\/wp-content\/mu-plugins\/a8c-analytics\/a8c-analytics.js?v=1729607242" );
							script.setAttribute( 'async', true );
							prev.parentNode.insertBefore( script, prev );
						}

													getScript();
											};

					if ( window.defQueue && defQueue.isLOHP && defQueue.isLOHP === 2020 ) {
						defQueue.items.push( setupAnalytics );
					} else {
						setupAnalytics();
					}
				} )();
			</script>
			<!-- A8C Analytics [end] -->
		<script src="//0.gravatar.com/js/hovercards/hovercards.min.js?ver=202451b213a1cbb4e3271ca470eb7790af362ac2e18ce468f8945952c7bd3456d2132e" id="grofiles-cards-js"></script>
<script id="wpgroho-js-extra">
var WPGroHo = {"my_hash":""};
</script>
<script crossorigin="anonymous" type="text/javascript" src="https://s0.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1610363240i"></script>

	<script>
		// Initialize and attach hovercards to all gravatars
		( function() {
			function init() {
				if ( typeof Gravatar === 'undefined' ) {
					return;
				}

				if ( typeof Gravatar.init !== 'function' ) {
					return;
				}

				Gravatar.profile_cb = function ( hash, id ) {
					WPGroHo.syncProfileData( hash, id );
				};

				Gravatar.my_hash = WPGroHo.my_hash;
				Gravatar.init(
					'body',
					'#wp-admin-bar-my-account',
					{
						i18n: {
							'Edit your profile →': 'Edit your profile →',
							'View profile →': 'View profile →',
							'Contact': 'Contact',
							'Send money': 'Send money',
							'Sorry, we are unable to load this Gravatar profile.': 'Sorry, we are unable to load this Gravatar profile.',
							'Profile not found.': 'Profile not found.',
							'Too Many Requests.': 'Too Many Requests.',
							'Internal Server Error.': 'Internal Server Error.',
						},
					}
				);
			}

			if ( document.readyState !== 'loading' ) {
				init();
			} else {
				document.addEventListener( 'DOMContentLoaded', init );
			}
		} )();
	</script>

		<div style="display:none">
	<div class="grofile-hash-map-99900f2c7dbca750ad1b5255b0bcda06">
	</div>
	<div class="grofile-hash-map-b81c838dbe00b472a1a3e274dce5b159">
	</div>
	<div class="grofile-hash-map-d245074a677931d06ae1730d20238ea9">
	</div>
	<div class="grofile-hash-map-c09bc0c8ad1b9bd1122df85de4c835b5">
	</div>
	</div>
	<div id="actionbar" class="actnbr-pub-blockbase actnbr-has-follow">
		<ul>
								<li class="actnbr-btn actnbr-hidden">
								<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z" fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
							<div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble">
							<div class="tip-arrow"></div>
							<div class="tip-inner actnbr-follow-bubble">
															<ul>
											<li class="actnbr-sitename">
			<a href="https://blog.pocketcasts.com">
				<img loading="lazy" alt="" src="https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=50" srcset="https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=50 1x, https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=75 1.5x, https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=100 2x, https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=150 3x, https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=200 4x" class="avatar avatar-50" height="50" width="50">				Pocket Casts Blog			</a>
		</li>
										<div class="actnbr-message no-display"></div>
									<form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;">
																						<div class="actnbr-follow-count">Join 65 other subscribers</div>
																					<div>
										<input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address">
										</div>
										<input type="hidden" name="action" value="subscribe">
										<input type="hidden" name="blog_id" value="198489407">
										<input type="hidden" name="source" value="https://blog.pocketcasts.com/">
										<input type="hidden" name="sub-type" value="actionbar-follow">
										<input type="hidden" id="_wpnonce" name="_wpnonce" value="ffd1b815d9">										<div class="actnbr-button-wrap">
											<button type="submit" value="Sign me up">
												Sign me up											</button>
										</div>
									</form>
									<li class="actnbr-login-nudge">
										<div>
											Already have a WordPress.com account? <a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fblog.pocketcasts.com%252F2024%252F12%252F05%252Fbrian-reed%252F">Log in now.</a>										</div>
									</li>
								</ul>
															</div>
						</div>
					</li>
									<li class="actnbr-btn actnbr-hidden no-display" onclick="javascript:__tcfapi( 'showUi' );">
						<a class="actnbr-action actnbr-actn-privacy" href="#">
							<svg class="gridicon gridicons-info-outline" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M13 9h-2V7h2v2zm0 2h-2v6h2v-6zm-1-7c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8m0-2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2z"></path></g></svg>							<span>Privacy						</span>
						</a>
					</li>
							<li class="actnbr-ellipsis actnbr-hidden">
				<svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M7 12c0 1.104-.896 2-2 2s-2-.896-2-2 .896-2 2-2 2 .896 2 2zm12-2c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-7 0c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z"></path></g></svg>				<div class="actnbr-popover tip tip-top-left actnbr-more">
					<div class="tip-arrow"></div>
					<div class="tip-inner">
						<ul>
									<li class="actnbr-sitename">
			<a href="https://blog.pocketcasts.com">
				<img loading="lazy" alt="" src="https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=50" srcset="https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=50 1x, https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=75 1.5x, https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=100 2x, https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=150 3x, https://blog.pocketcasts.com/wp-content/uploads/2022/02/cropped-pocketcasts-favicon-512x512-1.png?w=200 4x" class="avatar avatar-50" height="50" width="50">				Pocket Casts Blog			</a>
		</li>
								<li class="actnbr-folded-customize">
								<a href="https://pocketcastsblog.wordpress.com/wp-admin/site-editor.php?postType=wp_template&amp;postId=pub/blockbase//index">
									<svg class="gridicon gridicons-customize" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M2 6c0-1.505.78-3.08 2-4 0 .845.69 2 2 2 1.657 0 3 1.343 3 3 0 .386-.08.752-.212 1.09.74.594 1.476 1.19 2.19 1.81L8.9 11.98c-.62-.716-1.214-1.454-1.807-2.192C6.753 9.92 6.387 10 6 10c-2.21 0-4-1.79-4-4zm12.152 6.848l1.34-1.34c.607.304 1.283.492 2.008.492 2.485 0 4.5-2.015 4.5-4.5 0-.725-.188-1.4-.493-2.007L18 9l-2-2 3.507-3.507C18.9 3.188 18.225 3 17.5 3 15.015 3 13 5.015 13 7.5c0 .725.188 1.4.493 2.007L3 20l2 2 6.848-6.848c1.885 1.928 3.874 3.753 5.977 5.45l1.425 1.148 1.5-1.5-1.15-1.425c-1.695-2.103-3.52-4.092-5.448-5.977z"></path></g></svg>									<span>Edit Site</span>
								</a>
							</li>
																<li class="actnbr-folded-follow">
												<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z" fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
										</li>
																	<li class="actnbr-signup"><a href="https://wordpress.com/start/">Sign up</a></li>
									<li class="actnbr-login"><a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fblog.pocketcasts.com%252F2024%252F12%252F05%252Fbrian-reed%252F">Log in</a></li>
																	<li class="flb-report">
										<a href="https://wordpress.com/abuse/?report_url=https://blog.pocketcasts.com" target="_blank" rel="noopener noreferrer">
											Report this content										</a>
									</li>
																	<li class="actnbr-reader">
										<a href="https://wordpress.com/read/feeds/126136326">
											View site in Reader										</a>
									</li>
																	<li class="actnbr-subs">
										<a href="https://subscribe.wordpress.com/">Manage subscriptions</a>
									</li>
																		<li class="actnbr-fold"><a href="">Collapse this bar</a></li>
															</ul>
					</div>
				</div>
			</li>
		</ul>
	</div>
	
<script>
window.addEventListener( "load", function( event ) {
	var link = document.createElement( "link" );
	link.href = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.css?v=20241015";
	link.type = "text/css";
	link.rel = "stylesheet";
	document.head.appendChild( link );

	var script = document.createElement( "script" );
	script.src = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.js?v=20231122";
	script.defer = true;
	document.body.appendChild( script );
} );
</script>

	<script crossorigin="anonymous" type="text/javascript" src="https://s0.wp.com/_static/??/wp-content/js/mobile-useragent-info.js,/wp-content/mu-plugins/jetpack-plugin/moon/jetpack_vendor/automattic/jetpack-assets/build/i18n-loader.js?m=1725888675j"></script>
<script id="wp-block-template-skip-link-js-after">
	( function() {
		var skipLinkTarget = document.querySelector( 'main' ),
			sibling,
			skipLinkTargetID,
			skipLink;

		// Early exit if a skip-link target can't be located.
		if ( ! skipLinkTarget ) {
			return;
		}

		/*
		 * Get the site wrapper.
		 * The skip-link will be injected in the beginning of it.
		 */
		sibling = document.querySelector( '.wp-site-blocks' );

		// Early exit if the root element was not found.
		if ( ! sibling ) {
			return;
		}

		// Get the skip-link target's ID, and generate one if it doesn't exist.
		skipLinkTargetID = skipLinkTarget.id;
		if ( ! skipLinkTargetID ) {
			skipLinkTargetID = 'wp--skip-link--target';
			skipLinkTarget.id = skipLinkTargetID;
		}

		// Create the skip link.
		skipLink = document.createElement( 'a' );
		skipLink.classList.add( 'skip-link', 'screen-reader-text' );
		skipLink.href = '#' + skipLinkTargetID;
		skipLink.innerHTML = 'Skip to content';

		// Inject the skip link.
		sibling.parentElement.insertBefore( skipLink, sibling );
	}() );
	
</script>
<script id="wp-jp-i18n-loader-js-after">
wp.jpI18nLoader.state = {"baseUrl":"https://widgets.wp.com/languages/","locale":"en_US","domainMap":{"jetpack-admin-ui":"plugins/jetpack","jetpack-assets":"plugins/jetpack","jetpack-backup-pkg":"plugins/jetpack","jetpack-blaze":"plugins/jetpack","jetpack-boost-core":"plugins/jetpack","jetpack-boost-speed-score":"plugins/jetpack","jetpack-classic-theme-helper":"plugins/jetpack","jetpack-compat":"plugins/jetpack","jetpack-config":"plugins/jetpack","jetpack-connection":"plugins/jetpack","jetpack-explat":"plugins/jetpack","jetpack-forms":"plugins/jetpack","jetpack-image-cdn":"plugins/jetpack","jetpack-import":"plugins/jetpack","jetpack-ip":"plugins/jetpack","jetpack-jitm":"plugins/jetpack","jetpack-licensing":"plugins/jetpack","jetpack-masterbar":"plugins/jetpack","jetpack-my-jetpack":"plugins/jetpack","jetpack-password-checker":"plugins/jetpack","jetpack-plugins-installer":"plugins/jetpack","jetpack-post-list":"plugins/jetpack","jetpack-protect-models":"plugins/jetpack","jetpack-protect-status":"plugins/jetpack","jetpack-publicize-pkg":"plugins/jetpack","jetpack-search-pkg":"plugins/jetpack","jetpack-stats":"plugins/jetpack","jetpack-stats-admin":"plugins/jetpack","jetpack-sync":"plugins/jetpack","jetpack-videopress-pkg":"plugins/jetpack","jetpack-waf":"plugins/jetpack","jetpack-wordads":"plugins/jetpack","woocommerce-analytics":"plugins/jetpack"},"domainPaths":{"jetpack-admin-ui":"jetpack_vendor/automattic/jetpack-admin-ui/","jetpack-assets":"jetpack_vendor/automattic/jetpack-assets/","jetpack-backup-pkg":"jetpack_vendor/automattic/jetpack-backup/","jetpack-blaze":"jetpack_vendor/automattic/jetpack-blaze/","jetpack-boost-core":"jetpack_vendor/automattic/jetpack-boost-core/","jetpack-boost-speed-score":"jetpack_vendor/automattic/jetpack-boost-speed-score/","jetpack-classic-theme-helper":"jetpack_vendor/automattic/jetpack-classic-theme-helper/","jetpack-compat":"jetpack_vendor/automattic/jetpack-compat/","jetpack-config":"jetpack_vendor/automattic/jetpack-config/","jetpack-connection":"jetpack_vendor/automattic/jetpack-connection/","jetpack-explat":"jetpack_vendor/automattic/jetpack-explat/","jetpack-forms":"jetpack_vendor/automattic/jetpack-forms/","jetpack-image-cdn":"jetpack_vendor/automattic/jetpack-image-cdn/","jetpack-import":"jetpack_vendor/automattic/jetpack-import/","jetpack-ip":"jetpack_vendor/automattic/jetpack-ip/","jetpack-jitm":"jetpack_vendor/automattic/jetpack-jitm/","jetpack-licensing":"jetpack_vendor/automattic/jetpack-licensing/","jetpack-masterbar":"jetpack_vendor/automattic/jetpack-masterbar/","jetpack-my-jetpack":"jetpack_vendor/automattic/jetpack-my-jetpack/","jetpack-password-checker":"jetpack_vendor/automattic/jetpack-password-checker/","jetpack-plugins-installer":"jetpack_vendor/automattic/jetpack-plugins-installer/","jetpack-post-list":"jetpack_vendor/automattic/jetpack-post-list/","jetpack-protect-models":"jetpack_vendor/automattic/jetpack-protect-models/","jetpack-protect-status":"jetpack_vendor/automattic/jetpack-protect-status/","jetpack-publicize-pkg":"jetpack_vendor/automattic/jetpack-publicize/","jetpack-search-pkg":"jetpack_vendor/automattic/jetpack-search/","jetpack-stats":"jetpack_vendor/automattic/jetpack-stats/","jetpack-stats-admin":"jetpack_vendor/automattic/jetpack-stats-admin/","jetpack-sync":"jetpack_vendor/automattic/jetpack-sync/","jetpack-videopress-pkg":"jetpack_vendor/automattic/jetpack-videopress/","jetpack-waf":"jetpack_vendor/automattic/jetpack-waf/","jetpack-wordads":"jetpack_vendor/automattic/jetpack-wordads/","woocommerce-analytics":"jetpack_vendor/automattic/woocommerce-analytics/"}};
</script>
<script crossorigin="anonymous" src="https://s0.wp.com/wp-content/plugins/gutenberg-core/v19.8.0/build/url/index.min.js?m=1733324323i&amp;ver=499ac283dc628dfb623e" id="wp-url-js"></script>
<script id="jetpack-instant-search-js-before">
var JetpackInstantSearchOptions=JSON.parse(decodeURIComponent("%7B%22overlayOptions%22%3A%7B%22colorTheme%22%3A%22light%22%2C%22enableInfScroll%22%3Atrue%2C%22enableFilteringOpensOverlay%22%3Atrue%2C%22enablePostDate%22%3Atrue%2C%22enableSort%22%3Atrue%2C%22highlightColor%22%3A%22%23FFC%22%2C%22overlayTrigger%22%3A%22submit%22%2C%22resultFormat%22%3A%22expanded%22%2C%22showPoweredBy%22%3Atrue%2C%22defaultSort%22%3A%22relevance%22%2C%22excludedPostTypes%22%3A%5B%5D%7D%2C%22homeUrl%22%3A%22https%3A%5C%2F%5C%2Fblog.pocketcasts.com%22%2C%22locale%22%3A%22en%22%2C%22postsPerPage%22%3A10%2C%22siteId%22%3A198489407%2C%22postTypes%22%3A%7B%22post%22%3A%7B%22singular_name%22%3A%22Post%22%2C%22name%22%3A%22Posts%22%7D%2C%22page%22%3A%7B%22singular_name%22%3A%22Page%22%2C%22name%22%3A%22Pages%22%7D%2C%22attachment%22%3A%7B%22singular_name%22%3A%22Media%22%2C%22name%22%3A%22Media%22%7D%2C%22jetpack-testimonial%22%3A%7B%22singular_name%22%3A%22Testimonial%22%2C%22name%22%3A%22Testimonials%22%7D%7D%2C%22webpackPublicPath%22%3A%22https%3A%5C%2F%5C%2Fs0.wp.com%5C%2Fwp-content%5C%2Fmu-plugins%5C%2Fjetpack-plugin%5C%2Fmoon%5C%2Fjetpack_vendor%5C%2Fautomattic%5C%2Fjetpack-search%5C%2Fbuild%5C%2Finstant-search%5C%2F%22%2C%22isPhotonEnabled%22%3Atrue%2C%22isFreePlan%22%3Afalse%2C%22apiRoot%22%3A%22https%3A%5C%2F%5C%2Fpublic-api.wordpress.com%5C%2F%22%2C%22apiNonce%22%3A%22a06acb7eb3%22%2C%22isPrivateSite%22%3Afalse%2C%22isWpcom%22%3Atrue%2C%22hasOverlayWidgets%22%3Atrue%2C%22widgets%22%3A%5B%7B%22filters%22%3A%5B%7B%22name%22%3A%22Mentions%22%2C%22type%22%3A%22taxonomy%22%2C%22taxonomy%22%3A%22mentions%22%2C%22count%22%3A5%2C%22widget_id%22%3A%22jetpack-search-filters-2%22%2C%22filter_id%22%3A%22taxonomy_0%22%7D%2C%7B%22name%22%3A%22Categories%22%2C%22type%22%3A%22taxonomy%22%2C%22taxonomy%22%3A%22category%22%2C%22count%22%3A5%2C%22widget_id%22%3A%22jetpack-search-filters-2%22%2C%22filter_id%22%3A%22taxonomy_1%22%7D%2C%7B%22name%22%3A%22Tags%22%2C%22type%22%3A%22taxonomy%22%2C%22taxonomy%22%3A%22post_tag%22%2C%22count%22%3A5%2C%22widget_id%22%3A%22jetpack-search-filters-2%22%2C%22filter_id%22%3A%22taxonomy_2%22%7D%2C%7B%22name%22%3A%22Year%22%2C%22type%22%3A%22date_histogram%22%2C%22count%22%3A5%2C%22field%22%3A%22post_date%22%2C%22interval%22%3A%22year%22%2C%22widget_id%22%3A%22jetpack-search-filters-2%22%2C%22filter_id%22%3A%22date_histogram_3%22%7D%5D%2C%22widget_id%22%3A%22jetpack-search-filters-2%22%7D%5D%2C%22widgetsOutsideOverlay%22%3A%5B%5D%2C%22hasNonSearchWidgets%22%3Afalse%2C%22preventTrackingCookiesReset%22%3Atrue%7D"));
</script>
<script crossorigin="anonymous" type="text/javascript" src="https://s0.wp.com/wp-content/mu-plugins/jetpack-plugin/moon/jetpack_vendor/automattic/jetpack-search/build/instant-search/jp-search.js?m=1734037174i"></script>
<script crossorigin="anonymous" src="//stats.wp.com/w.js?ver=202451" id="jp-tracks-js"></script>

	<script type="text/javascript">
		(function () {
			var wpcom_reblog = {
				source: 'toolbar',

				toggle_reblog_box_flair: function (obj_id, post_id) {

					// Go to site selector. This will redirect to their blog if they only have one.
					const postEndpoint = `https://wordpress.com/post`;

					// Ideally we would use the permalink here, but fortunately this will be replaced with the 
					// post permalink in the editor.
					const originalURL = `${ document.location.href }?page_id=${ post_id }`; 
					
					const url =
						postEndpoint +
						'?url=' +
						encodeURIComponent( originalURL ) +
						'&is_post_share=true' +
						'&v=5';

					const redirect = function () {
						if (
							! window.open( url, '_blank' )
						) {
							location.href = url;
						}
					};

					if ( /Firefox/.test( navigator.userAgent ) ) {
						setTimeout( redirect, 0 );
					} else {
						redirect();
					}
				},
			};

			window.wpcom_reblog = wpcom_reblog;
		})();
	</script>
<script type="text/javascript">
// <![CDATA[
(function() {
try{
  if ( window.external &&'msIsSiteMode' in window.external) {
    if (window.external.msIsSiteMode()) {
      var jl = document.createElement('script');
      jl.type='text/javascript';
      jl.async=true;
      jl.src='/wp-content/plugins/ie-sitemode/custom-jumplist.php';
      var s = document.getElementsByTagName('script')[0];
      s.parentNode.insertBefore(jl, s);
    }
  }
}catch(e){}
})();
// ]]>
</script><script src="//stats.wp.com/w.js?67" defer=""></script> <script type="text/javascript">
_tkq = window._tkq || [];
_stq = window._stq || [];
_tkq.push(['storeContext', {'blog_id':'198489407','blog_tz':'9','user_lang':'en','blog_lang':'en','user_id':'0'}]);
_stq.push(['view', {'blog':'198489407','v':'wpcom','tz':'9','user_id':'0','subd':'pocketcastsblog'}]);
_stq.push(['extra', {'crypt':'UE40eW5QN0p8M2Y/RE1lSiYrZXhzUkM5fD1uTDNLUGt6QzVbd3FKb3Q4aWxfXXI3YWo4Qz1OQTklbU5iaFcmUVFuNjY9c2xqOUdMWmdBL19wOGp1T3xISjRRdT1tTj0xUG4vS0p4Y3xOZ2JRWVpORElfZm5wfGRwdyZRbkdVMWl6UXRxODM1Skl0MEdSX10lVnE5aU9UWWMxc1planlfK2JiSlBOP1JSSFZJOUxQbXxTWzlicGxZZGN4RDNUL2p4blprcmZKeTZKZmVKcmtFQXRJSVAlejNdMjZBVHF5LCVWQ2UmR3MmaTFdLGhFby42K1hEXUJwRltOQU54Tzh3Sk5RV0RFTyZnYnFLLkdufm5WS3hNazg3MVltd1NNeU9naVtNLCt0fHZVPVQyU29IUFMzcj1u'}]);
_stq.push([ 'clickTrackerInit', '198489407', '0' ]);
</script><style>img#wpstats {
			position: absolute !important;
			clip: rect(0, 0, 0, 0);
			padding: 0 !important;
			border: 0 !important;
			height: 0 !important;
			width: 0 !important;
			overflow: hidden;
		}</style><img src="https://pixel.wp.com/g.gif?blog=198489407&amp;v=wpcom&amp;tz=9&amp;user_id=0&amp;subd=pocketcastsblog&amp;host=blog.pocketcasts.com&amp;ref=&amp;rand=0.8100636202706801" alt="" id="wpstats">
<noscript><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript>
<script defer="" id="bilmur" data-provider="wordpress.com" data-service="simple" src="/wp-content/js/bilmur-4.min.js?i=12&amp;m=202451"></script><script>
( function() {
	function getMobileUserAgentInfo() {
		if ( typeof wpcom_mobile_user_agent_info === 'object' ) {
			wpcom_mobile_user_agent_info.init();
			var mobileStatsQueryString = '';

			if ( wpcom_mobile_user_agent_info.matchedPlatformName !== false ) {
				mobileStatsQueryString += '&x_' + 'mobile_platforms' + '=' + wpcom_mobile_user_agent_info.matchedPlatformName;
			}

			if ( wpcom_mobile_user_agent_info.matchedUserAgentName !== false ) {
				mobileStatsQueryString += '&x_' + 'mobile_devices' + '=' + wpcom_mobile_user_agent_info.matchedUserAgentName;
			}

			if ( wpcom_mobile_user_agent_info.isIPad() ) {
				mobileStatsQueryString += '&x_' + 'ipad_views' + '=' + 'views';
			}

			if ( mobileStatsQueryString != '' ) {
				new Image().src = document.location.protocol + '//pixel.wp.com/g.gif?v=wpcom-no-pv' + mobileStatsQueryString + '&baba=' + Math.random();
			}
		}
	}

	document.addEventListener( 'DOMContentLoaded', getMobileUserAgentInfo );
} )();
</script>

<iframe scrolling="no" id="wpcom_remote_login_key" src="https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=key&amp;origin=aHR0cHM6Ly9ibG9nLnBvY2tldGNhc3RzLmNvbQ%3D%3D&amp;wpcomid=198489407&amp;time=1734474307" style="display: none;"></iframe><div aria-hidden="true" aria-labelledby="jetpack-instant-search__overlay-title" role="dialog" class="jetpack-instant-search jetpack-instant-search__overlay jetpack-instant-search__overlay--light  is-hidden"><h1 id="jetpack-instant-search__overlay-title" class="screen-reader-text">Search results</h1><div class="jetpack-instant-search__search-results-wrapper has-colophon"><div aria-hidden="false" class="jetpack-instant-search__search-results"><div role="form" class="jetpack-instant-search__search-results-controls"><form autocomplete="off" role="search" class="jetpack-instant-search__search-results-search-form"><div class="jetpack-instant-search__search-form"><div class="jetpack-instant-search__box"><label for="jetpack-instant-search__box-input-1" class="jetpack-instant-search__box-label"><div class="jetpack-instant-search__box-gridicon"><svg focusable="true" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg" aria-hidden="false" class="gridicon gridicons-search " style="height: 24px; width: 24px;"><title>Magnifying Glass</title><g><path d="M21 19l-5.154-5.154C16.574 12.742 17 11.42 17 10c0-3.866-3.134-7-7-7s-7 3.134-7 7 3.134 7 7 7c1.42 0 2.742-.426 3.846-1.154L19 21l2-2zM5 10c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5z"></path></g></svg></div><input autocomplete="off" id="jetpack-instant-search__box-input-1" inputmode="search" placeholder="Search…" type="search" class="search-field jetpack-instant-search__box-input"><button tabindex="-1" class="screen-reader-text assistive-text">Search</button></label></div></div></form><button tabindex="0" aria-label="Close search results" class="jetpack-instant-search__overlay-close"><svg focusable="false" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="gridicon gridicons-cross " style="height: 24px; width: 24px;"><title>Close search results</title><g><path d="M18.36 19.78L12 13.41l-6.36 6.37-1.42-1.42L10.59 12 4.22 5.64l1.42-1.42L12 10.59l6.36-6.36 1.41 1.41L13.41 12l6.36 6.36z"></path></g></svg></button></div><div role="form" class="jetpack-instant-search__search-form-controls"><div role="button" tabindex="0" class="jetpack-instant-search__search-results-filter-button">Filters<svg focusable="true" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="gridicon gridicons-chevron-down " style="height: 16px; width: 16px;"><g><path d="M20 9l-8 8-8-8 1.414-1.414L12 14.172l6.586-6.586"></path></g></svg><span class="screen-reader-text assistive-text">Show filters</span></div><div aria-controls="jetpack-instant-search__search-results-content" class="jetpack-instant-search__search-sort jetpack-instant-search__search-sort-with-links"><div class="screen-reader-text">Sort by: </div><button aria-current="true" data-value="relevance" class="jetpack-instant-search__search-sort-option is-selected">Relevance</button><span aria-hidden="true" class="jetpack-instant-search__search-sort-separator">•</span><button aria-current="false" data-value="newest" class="jetpack-instant-search__search-sort-option ">Newest</button><span aria-hidden="true" class="jetpack-instant-search__search-sort-separator">•</span><button aria-current="false" data-value="oldest" class="jetpack-instant-search__search-sort-option ">Oldest</button></div></div><div aria-live="polite" id="jetpack-instant-search__search-results-content" class="jetpack-instant-search__search-results-content"><div class="jetpack-instant-search__search-results-primary"><style>
							.jetpack-instant-search *::selection,
							.jetpack-instant-search .jetpack-instant-search__search-results .jetpack-instant-search__search-results-primary .jetpack-instant-search__search-result mark {
								color: black;
								background-color: #FFC;
							}
						</style><h2 class="jetpack-instant-search__search-results-title">No results found</h2></div><div class="jetpack-instant-search__search-results-secondary  "><div class="jetpack-instant-search__sidebar"><div class="jetpack-instant-search__search-filters"><h2 class="jetpack-instant-search__search-filters-title">Filter options</h2></div><div class="jetpack-instant-search__widget-area-container"><div class="jetpack-instant-search__widget-area" style="">
							<div id="jetpack-search-filters-2" class="widget jetpack-filters widget_search">			<div id="jetpack-search-filters-2-wrapper" class="jetpack-instant-search-wrapper">
		<div id="jetpack-search-filters-2-portaled-wrapper" class="jetpack-instant-search__portaled-wrapper"><div class="jetpack-instant-search__search-filters"></div></div></div></div>					</div></div></div></div></div><button id="jetpack-instant-search__overlay-focus-anchor">Close Search</button></div><div class="jetpack-instant-search__jetpack-colophon"><a href="https://jetpack.com/upgrade/search/?utm_source=poweredby" rel="external noopener noreferrer nofollow" target="_blank" class="jetpack-instant-search__jetpack-colophon-link"><svg height="12" width="12" viewBox="0 0 32 32" class="jetpack-instant-search__jetpack-colophon-logo"><path fill="#069e08" d="M16,0C7.2,0,0,7.2,0,16s7.2,16,16,16s16-7.2,16-16S24.8,0,16,0z" class="jetpack-logo__icon-circle"></path><polygon fill="#fff" points="15,19 7,19 15,3 " class="jetpack-logo__icon-triangle"></polygon><polygon fill="#fff" points="17,29 17,13 25,13 " class="jetpack-logo__icon-triangle"></polygon></svg><span class="jetpack-instant-search__jetpack-colophon-text">Search powered by Jetpack</span></a></div></div></div><form class="a8c-cookie-banner a8c-cookie-banner-v2" method="post" action="#" novalidate="novalidate"><div class="a8c-cookie-banner__simple-options"><p class="a8c-cookie-banner__simple-text-description">As an open source company, we take your privacy seriously and want to be as transparent as possible. So: We use cookies to collect some personal data from you (like your browsing data, IP addresses, and other unique identifiers). Some of these cookies we absolutely need in order to make things work, and others you can choose in order to optimize your experience while using our site and services.</p><div class="a8c-cookie-banner__button-container"><a class="a8c-cookie-banner__customize-button" href="#">Customize</a><a class="a8c-cookie-banner__accept-all-button" href="#">Accept all</a></div></div><div class="a8c-cookie-banner__options-selection"><p class="a8c-cookie-banner__options-lead-text">Your privacy is critically important to us. We and our partners use, store, and process your personal data to optimize: our <strong>website</strong> such as by improving security or conducting analytics, <strong>marketing activities</strong> to help deliver relevant marketing or content, and your <strong>user experience</strong> such as by remembering your account name, language settings, or cart information, where applicable. You can customize your cookie settings below. Learn more in our <a href="https://support.pocketcasts.com/article/privacy-policy/" target="_blank">Privacy Policy</a>.</p><div class="a8c-cookie-banner__bucket-container">
            <div class="a8c-cookie-banner__checkbox-container">
                <input type="checkbox" class="a8c-cookie-banner__option-essential-bucket" checked="" disabled="">
            </div>
            <div class="a8c-cookie-banner__option-description">
                <strong>
                    Required
                </strong>
                <p>
                    These cookies are essential for our websites and services to perform basic functions and are necessary for us to operate certain features, like allowing registered users to authenticate and perform account-related functions, storing preferences set by users (like account name, language, and location), and ensuring our services operate properly.
                </p>
            </div>
        	</div><div class="a8c-cookie-banner__bucket-container">
            <div class="a8c-cookie-banner__checkbox-container">
                <input type="checkbox" class="a8c-cookie-banner__option-analytics-bucket" checked="">
            </div>
            <div class="a8c-cookie-banner__option-description">
                <strong>
                    Analytics
                </strong>
                <p>
                    These cookies allow us to optimize performance by collecting information on how users interact with our websites.
                </p>
            </div>
        	</div><a class="a8c-cookie-banner__accept-selection-button" href="#">Accept selection</a></div></form><script src="https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.js?v=20231122" defer=""></script></body></html>