<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1" />
<script type="text/javascript">
  WebFontConfig = {"google":{"families":["Noto+Sans:r,i,b,bi:latin,latin-ext","PT+Sans:b:latin,latin-ext"]},"api_url":"https:\/\/fonts-api.wp.com\/css"};
  (function() {
    var wf = document.createElement('script');
    wf.src = '/wp-content/plugins/custom-fonts/js/webfont.js';
    wf.type = 'text/javascript';
    wf.async = 'true';
    var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(wf, s);
	})();
</script><style id="jetpack-custom-fonts-css"></style>
<meta name='robots' content='max-image-preview:large' />

<!-- Async WordPress.com Remote Login -->
<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=112636'
					+ '&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=aHR0cHM6Ly9vcGVudGhld29yZC5vcmc%3D"
		+ "&wpcomid=54736365"
		+ "&time=" + Math.floor( Date.now() / 1000 );
	document.body.appendChild( iframe );
}, false );
</script>
<title>OpentheWord.org &#8211; A bit of Bible, A bit of Life, A bit of Politics</title>
<link rel='dns-prefetch' href='//s1.wp.com' />
<link rel='dns-prefetch' href='//s2.wp.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//af.pubmine.com' />
<link rel="alternate" type="application/rss+xml" title="OpentheWord.org &raquo; Feed" href="https://opentheword.org/feed/" />
<link rel="alternate" type="application/rss+xml" title="OpentheWord.org &raquo; Comments Feed" href="https://opentheword.org/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>
	<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-1' href='/_static/??/wp-content/mu-plugins/widgets/eu-cookie-law/templates/style.css,/wp-content/mu-plugins/likes/jetpack-likes.css?m=1743883414j&cssminify=yes' type='text/css' media='all' />
<style id="wp-block-social-links-inline-css">
.wp-block-social-links{background:none;box-sizing:border-box;margin-left:0;padding-left:0;padding-right:0;text-indent:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{border-bottom:0;box-shadow:none;text-decoration:none}.wp-block-social-links .wp-social-link svg{height:1em;width:1em}.wp-block-social-links .wp-social-link span:not(.screen-reader-text){font-size:.65em;margin-left:.5em;margin-right:.5em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{display:flex;justify-content:center}.wp-block-social-links.alignright{justify-content:flex-end}.wp-block-social-link{border-radius:9999px;display:block}@media not (prefers-reduced-motion){.wp-block-social-link{transition:transform .1s ease}}.wp-block-social-link{height:auto}.wp-block-social-link a{align-items:center;display:flex;line-height:0}.wp-block-social-link:hover{transform:scale(1.1)}.wp-block-social-links .wp-block-social-link.wp-social-link{display:inline-block;margin:0;padding:0}.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited{fill:currentColor;color:currentColor}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link{background-color:#f0f0f0;color:#444}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon{background-color:#f90;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance{background-color:#0757fe;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky{background-color:#0a7aff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord{background-color:#5865f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy{background-color:#f45800;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook{background-color:#0866ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr{background-color:#0461dd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare{background-color:#e65678;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github{background-color:#24292d;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google{background-color:#ea4434;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar{background-color:#1d4fc4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram{background-color:#f00075;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup{background-color:#f6405f;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest{background-color:#e60122;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket{background-color:#ef4155;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit{background-color:#ff4500;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype{background-color:#0478d7;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat{stroke:#000;background-color:#fefc00;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify{background-color:#1bd760;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram{background-color:#2aabee;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr{background-color:#011835;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch{background-color:#6440a4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk{background-color:#4680c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp{background-color:#25d366;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp{background-color:#d32422;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube{background-color:red;color:#fff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link{background:none}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg{height:1.25em;width:1.25em}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon{color:#f90}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp{color:#1ea0c3}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance{color:#0757fe}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky{color:#0a7aff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen{color:#1e1f26}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart{color:#02e49b}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord{color:#5865f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble{color:#e94c89}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox{color:#4280ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy{color:#f45800}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook{color:#0866ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr{color:#0461dd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare{color:#e65678}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github{color:#24292d}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads{color:#382110}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google{color:#ea4434}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar{color:#1d4fc4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram{color:#f00075}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm{color:#e21b24}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin{color:#0d66c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon{color:#3288d4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup{color:#f6405f}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest{color:#e60122}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket{color:#ef4155}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit{color:#ff4500}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype{color:#0478d7}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat{stroke:#000;color:#fff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud{color:#ff5600}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify{color:#1bd760}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram{color:#2aabee}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr{color:#011835}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch{color:#6440a4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter{color:#1da1f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo{color:#1eb7ea}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk{color:#4680c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp{color:#25d366}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress{color:#3499cd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp{color:#d32422}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}:root :where(.wp-block-social-links .wp-social-link a){padding:.25em}:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a){padding:0}:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a){padding-left:.6666666667em;padding-right:.6666666667em}.wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label{color:#000}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/social-links/style.min.css */
</style>
<style id="wp-block-search-inline-css">
.wp-block-search__button{margin-left:10px;word-break:normal}.wp-block-search__button.has-icon{line-height:0}.wp-block-search__button svg{fill:currentColor;height:1.25em;min-height:24px;min-width:24px;vertical-align:text-bottom;width:1.25em}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px}.wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search__label{width:100%}.wp-block-search.wp-block-search__button-only .wp-block-search__button{box-sizing:border-box;display:flex;flex-shrink:0;justify-content:center;margin-left:0;max-width:100%}.wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{min-width:0!important;transition-property:width}.wp-block-search.wp-block-search__button-only .wp-block-search__input{flex-basis:100%;transition-duration:.3s}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden,.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper{overflow:hidden}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input{border-left-width:0!important;border-right-width:0!important;flex-basis:0;flex-grow:0;margin:0;min-width:0!important;padding-left:0!important;padding-right:0!important;width:0!important}:where(.wp-block-search__input){appearance:none;border:1px solid #949494;flex-grow:1;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin-left:0;margin-right:0;min-width:3rem;padding:8px;text-decoration:unset!important;text-transform:inherit}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){background-color:#fff;border:1px solid #949494;box-sizing:border-box;padding:4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input{border:none;border-radius:0;padding:0 4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus{outline:none}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px}.wp-block-search.aligncenter .wp-block-search__inside-wrapper{margin:auto}.wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{float:right}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/search/style.min.css */
</style>
<style id="wp-block-columns-inline-css">
.wp-block-columns{box-sizing:border-box;display:flex;flex-wrap:wrap!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}.wp-block-columns{align-items:normal!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%}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/columns/style.min.css */
</style>
<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}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/group/style.min.css */
</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}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/site-logo/style.min.css */
</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{outline:1px solid #f0f0f0;padding:8px}.link-ui-block-inserter{padding-top:8px}.link-ui-block-inserter__back{margin-left:8px;text-transform:uppercase}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/navigation-link/style.min.css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-18-1' href='/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/navigation/style.min.css?m=1780625085i&cssminify=yes' type='text/css' media='all' />
<style id="wp-block-heading-inline-css">
h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).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}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/heading/style.min.css */
</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%}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/post-featured-image/style.min.css */
</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}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/post-terms/style.min.css */
</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}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/post-title/style.min.css */
</style>
<style id="wp-block-post-excerpt-inline-css">
:where(.wp-block-post-excerpt){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}.wp-block-post-excerpt__excerpt{margin-bottom:0;margin-top:0}.wp-block-post-excerpt__more-text{margin-bottom:0;margin-top:var(--wp--style--block-gap)}.wp-block-post-excerpt__more-link{display:inline-block}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/post-excerpt/style.min.css */
</style>
<style id="wp-block-post-author-name-inline-css">
.wp-block-post-author-name{box-sizing:border-box}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/post-author-name/style.min.css */
</style>
<style id="wp-block-post-template-inline-css">
.wp-block-post-template{box-sizing:border-box;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[class*=columns-]:not(.has-native-responsive-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}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/post-template/style.min.css */
</style>
<style id="wp-block-spacer-inline-css">
.wp-block-spacer{clear:both}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/spacer/style.min.css */
</style>
<style id="wp-block-post-date-inline-css">
.wp-block-post-date{box-sizing:border-box}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/post-date/style.min.css */
</style>
<style id="wp-block-list-inline-css">
ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/list/style.min.css */
</style>
<style id="wp-block-audio-inline-css">
.wp-block-audio{box-sizing:border-box}.wp-block-audio :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-audio audio{min-width:300px;width:100%}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/audio/style.min.css */
</style>
<style id="wp-block-embed-inline-css">
.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type="core/embed"],.wp-block[data-align=right]>[data-type="core/embed"]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper{min-width:280px}.wp-block-cover .wp-block-embed{min-height:240px;min-width:320px}.wp-block-group.is-layout-flex .wp-block-embed{flex:1 1 0%;min-width:0}.wp-block-embed{overflow-wrap:break-word}.wp-block-embed :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{padding-top:177.77%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/embed/style.min.css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-48-1' href='/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/sun/jetpack_vendor/automattic/jetpack-mu-wpcom/src/build/newspack-blocks-blog-posts-view/newspack-blocks-blog-posts-view.css?m=1750972340i&cssminify=yes' type='text/css' media='all' />
<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}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/paragraph/style.min.css */
</style>
<style id="wp-interactivity-router-animations-inline-css">
			.wp-interactivity-router-loading-bar {
				position: fixed;
				top: 0;
				left: 0;
				margin: 0;
				padding: 0;
				width: 100vw;
				max-width: 100vw !important;
				height: 4px;
				background-color: #000;
				opacity: 0
			}
			.wp-interactivity-router-loading-bar.start-animation {
				animation: wp-interactivity-router-loading-bar-start-animation 30s cubic-bezier(0.03, 0.5, 0, 1) forwards
			}
			.wp-interactivity-router-loading-bar.finish-animation {
				animation: wp-interactivity-router-loading-bar-finish-animation 300ms ease-in
			}
			@keyframes wp-interactivity-router-loading-bar-start-animation {
				0% { transform: scaleX(0); transform-origin: 0 0; opacity: 1 }
				100% { transform: scaleX(1); transform-origin: 0 0; opacity: 1 }
			}
			@keyframes wp-interactivity-router-loading-bar-finish-animation {
				0% { opacity: 1 }
				50% { opacity: 1 }
				100% { opacity: 0 }
			}
/*# sourceURL=wp-interactivity-router-animations-inline-css */
</style>
<style id="jetpack-block-subscriptions-inline-css">
.is-style-compact .is-not-subscriber :is(.wp-block-button__link,.wp-block-jetpack-subscriptions__button){border-end-start-radius:0!important;border-start-start-radius:0!important;margin-inline-start:0!important}.is-style-compact .is-not-subscriber .components-text-control__input,.is-style-compact .is-not-subscriber p#subscribe-email input[type=email]{border-end-end-radius:0!important;border-start-end-radius:0!important}.is-style-compact:not(.wp-block-jetpack-subscriptions__use-newline) .components-text-control__input{border-inline-end-width:0!important}.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form-container{display:flex;flex-direction:column}.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline:not(.wp-block-jetpack-subscriptions__use-newline) .is-not-subscriber .wp-block-jetpack-subscriptions__form-elements{align-items:flex-start;display:flex}.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline:not(.wp-block-jetpack-subscriptions__use-newline) p#subscribe-submit{display:flex;justify-content:center}.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form .wp-block-jetpack-subscriptions__button,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form .wp-block-jetpack-subscriptions__textfield .components-text-control__input,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form button,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form input[type=email],.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form .wp-block-jetpack-subscriptions__button,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form .wp-block-jetpack-subscriptions__textfield .components-text-control__input,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form button,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form input[type=email]{box-sizing:border-box;cursor:pointer;line-height:1.3;min-width:auto!important;white-space:nowrap!important}.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form input[type=email]::placeholder,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form input[type=email]:disabled,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form input[type=email]::placeholder,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form input[type=email]:disabled{color:currentColor;opacity:.5}.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form .wp-block-jetpack-subscriptions__button,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form button,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form .wp-block-jetpack-subscriptions__button,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form button{border-color:#0000;border-style:solid}.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form .wp-block-jetpack-subscriptions__textfield,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form p#subscribe-email,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form .wp-block-jetpack-subscriptions__textfield,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form p#subscribe-email{background:#0000;flex-grow:1}.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form .wp-block-jetpack-subscriptions__textfield .components-base-control__field,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form .wp-block-jetpack-subscriptions__textfield .components-text-control__input,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form .wp-block-jetpack-subscriptions__textfield input[type=email],.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form p#subscribe-email .components-base-control__field,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form p#subscribe-email .components-text-control__input,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form p#subscribe-email input[type=email],.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form .wp-block-jetpack-subscriptions__textfield .components-base-control__field,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form .wp-block-jetpack-subscriptions__textfield .components-text-control__input,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form .wp-block-jetpack-subscriptions__textfield input[type=email],.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form p#subscribe-email .components-base-control__field,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form p#subscribe-email .components-text-control__input,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form p#subscribe-email input[type=email]{height:auto;margin:0;width:100%}.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form p#subscribe-email,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline .wp-block-jetpack-subscriptions__form p#subscribe-submit,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form p#subscribe-email,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline form p#subscribe-submit{line-height:0;margin:0;padding:0}.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline.wp-block-jetpack-subscriptions__show-subs .wp-block-jetpack-subscriptions__subscount{font-size:16px;margin:8px 0;text-align:end}.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline.wp-block-jetpack-subscriptions__use-newline .wp-block-jetpack-subscriptions__form-elements{display:block}.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline.wp-block-jetpack-subscriptions__use-newline .wp-block-jetpack-subscriptions__button,.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline.wp-block-jetpack-subscriptions__use-newline button{display:inline-block;max-width:100%}.wp-block-jetpack-subscriptions.wp-block-jetpack-subscriptions__supports-newline.wp-block-jetpack-subscriptions__use-newline .wp-block-jetpack-subscriptions__subscount{text-align:start}#subscribe-submit.is-link{text-align:center;width:auto!important}#subscribe-submit.is-link a{margin-left:0!important;margin-top:0!important;width:auto!important}@keyframes jetpack-memberships_button__spinner-animation{to{transform:rotate(1turn)}}.jetpack-memberships-spinner{display:none;height:1em;margin:0 0 0 5px;width:1em}.jetpack-memberships-spinner svg{height:100%;margin-bottom:-2px;width:100%}.jetpack-memberships-spinner-rotating{animation:jetpack-memberships_button__spinner-animation .75s linear infinite;transform-origin:center}.is-loading .jetpack-memberships-spinner{display:inline-block}body.jetpack-memberships-modal-open{overflow:hidden}dialog.jetpack-memberships-modal{opacity:1}dialog.jetpack-memberships-modal,dialog.jetpack-memberships-modal iframe{background:#0000;border:0;bottom:0;box-shadow:none;height:100%;left:0;margin:0;padding:0;position:fixed;right:0;top:0;width:100%}dialog.jetpack-memberships-modal::backdrop{background-color:#000;opacity:.7;transition:opacity .2s ease-out}dialog.jetpack-memberships-modal.is-loading,dialog.jetpack-memberships-modal.is-loading::backdrop{opacity:0}
/*# sourceURL=/wp-content/mu-plugins/jetpack-plugin/sun/_inc/blocks/subscriptions/view.css?minify=false */
</style>
<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;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id="wp-block-library-inline-css">
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--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,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}: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)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.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)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#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;word-break:normal!important}.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-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;}
/*# sourceURL=wp-block-library-inline-css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-58-1' href='/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/coblocks-style.css?m=1681832297i&cssminify=yes' type='text/css' media='all' />
<style id="wp-block-template-skip-link-inline-css">
/*! This file is auto-generated */
.skip-link.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal!important}.skip-link.screen-reader-text:focus{background-color:#eee;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}
/*# sourceURL=/wp-includes/css/wp-block-template-skip-link.min.css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-60-1' href='/_static/??/wp-content/mu-plugins/core-compat/wp-mediaelement.css,/wp-content/mu-plugins/wpcom-bbpress-premium-themes.css?m=1432920480j&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--base: #ffffff;--wp--preset--color--contrast: #000000;--wp--preset--color--primary: #e91f00;--wp--preset--color--secondary: #2e2e2e;--wp--preset--color--tertiary: #757575;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 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,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 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: clamp(0.868rem, 0.868rem + ((1vw - 0.2rem) * 0.275), 1.042rem);--wp--preset--font-size--medium: clamp(1.042rem, 1.042rem + ((1vw - 0.2rem) * 0.329), 1.25rem);--wp--preset--font-size--large: clamp(1.25rem, 1.25rem + ((1vw - 0.2rem) * 0.395), 1.5rem);--wp--preset--font-size--x-large: clamp(1.5rem, 1.5rem + ((1vw - 0.2rem) * 0.474), 1.8rem);--wp--preset--font-size--x-small: 0.868rem;--wp--preset--font-size--xx-large: clamp(1.8rem, 1.8rem + ((1vw - 0.2rem) * 1.252), 2.592rem);--wp--preset--font-size--xxx-large: clamp(2.592rem, 2.592rem + ((1vw - 0.2rem) * 1.802), 3.732rem);--wp--preset--font-size--huge: clamp(2.592rem, 2.592rem + ((1vw - 0.2rem) * 2.983), 4.479rem);--wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--courier-prime: 'Courier Prime', monospace;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-mono: 'DM Mono', monospace;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', 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--fira-sans: 'Fira Sans', 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-mono: 'IBM Plex Mono', monospace;--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--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--jost: Jost, 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--literata: Literata, 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--newsreader: Newsreader;--wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', 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--pt-serif: 'PT Serif', serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;--wp--preset--font-family--rubik: Rubik, 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--space-mono: 'Space Mono', monospace;--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--work-sans: 'Work Sans', sans-serif;--wp--preset--font-family--system-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.5rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: clamp(1.5rem, 2.2408964vw, 2.0rem);--wp--preset--spacing--60: clamp(2.0rem, 3.3613445vw, 3.0rem);--wp--preset--spacing--70: clamp(2.0rem, 4.4817927vw, 4.0rem);--wp--preset--spacing--80: clamp(3.0rem, 6.7226891vw, 6.0rem);--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 rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}.wp-block-button{--wp--preset--dimension--25: 25%;--wp--preset--dimension--50: 50%;--wp--preset--dimension--75: 75%;--wp--preset--dimension--100: 100%;}:root { --wp--style--global--content-size: 650px;--wp--style--global--wide-size: 1332px; }:where(body) { margin: 0; }.wp-site-blocks { padding-top: var(--wp--style--root--padding-top); padding-bottom: var(--wp--style--root--padding-bottom); }.has-global-padding { padding-right: var(--wp--style--root--padding-right); padding-left: var(--wp--style--root--padding-left); }.has-global-padding > .alignfull { margin-right: calc(var(--wp--style--root--padding-right) * -1); margin-left: calc(var(--wp--style--root--padding-left) * -1); }.has-global-padding :where(:not(.alignfull.is-layout-flow) > .has-global-padding:not(.wp-block-block, .alignfull)) { padding-right: 0; padding-left: 0; }.has-global-padding :where(:not(.alignfull.is-layout-flow) > .has-global-padding:not(.wp-block-block, .alignfull)) > .alignfull { margin-left: 0; margin-right: 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: var(--wp--preset--spacing--40); 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: var(--wp--preset--spacing--40); }: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: var(--wp--preset--spacing--40);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: var(--wp--preset--spacing--40);margin-block-end: 0;}:root :where(.is-layout-flex){gap: var(--wp--preset--spacing--40);}:root :where(.is-layout-grid){gap: var(--wp--preset--spacing--40);}.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--preset--color--base);color: var(--wp--preset--color--contrast);font-family: var(--wp--preset--font-family--raleway);font-size: var(--wp--preset--font-size--medium);letter-spacing: 0.35px;line-height: 1.6;--wp--style--root--padding-top: var(--wp--preset--spacing--40);--wp--style--root--padding-right: var(--wp--preset--spacing--30);--wp--style--root--padding-bottom: var(--wp--preset--spacing--40);--wp--style--root--padding-left: var(--wp--preset--spacing--30);}a:where(:not(.wp-element-button)){color: var(--wp--preset--color--primary);font-size: var(--wp--preset--font-size--medium);text-decoration: none;}:root :where(a:where(:not(.wp-element-button)):hover){color: var(--wp--preset--color--tertiary);}h1, h2, h3, h4, h5, h6{font-family: var(--wp--preset--font-family--sora);font-style: normal;font-weight: 700;line-height: 1.3;}h1{font-size: var(--wp--preset--font-size--x-large);}h2{font-family: var(--wp--preset--font-family--sora);font-size: var(--wp--preset--font-size--large);font-style: normal;font-weight: 700;}h3{font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.672), 1.3rem);line-height: 1.4;text-transform: capitalize;}h4{font-size: var(--wp--preset--font-size--small);}h5{font-size: var(--wp--preset--font-size--x-small);text-transform: uppercase;}h6{font-family: var(--wp--preset--font-family--sora);font-size: var(--wp--preset--font-size--x-small);font-style: normal;font-weight: 600;line-height: 1.2;text-transform: capitalize;}:root :where(.wp-element-button, .wp-block-button__link){background-color: var(--wp--preset--color--contrast);border-radius: 0;border-width: 0;color: var(--wp--preset--color--base);font-family: var(--wp--preset--font-family--system-font);font-size: var(--wp--preset--font-size--x-small);font-style: inherit;font-weight: 700;letter-spacing: 0.01em;line-height: 1;padding-top: 17px;padding-right: 34px;padding-bottom: 17px;padding-left: 34px;text-decoration: none;text-transform: uppercase;}:root :where(.wp-element-button:hover, .wp-block-button__link:hover){background-color: var(--wp--preset--color--primary);color: var(--wp--preset--color--base);}:root :where(.wp-element-button:focus, .wp-block-button__link:focus){background-color: var(--wp--preset--color--primary);color: var(--wp--preset--color--base);outline-color: var(--wp--preset--color--primary);outline-offset: 2px;outline-style: dotted;outline-width: 1px;}:root :where(.wp-element-button:active, .wp-block-button__link:active){background-color: var(--wp--preset--color--primary);color: var(--wp--preset--color--base);}:root :where(.wp-element-caption, .wp-block-audio figcaption, .wp-block-embed figcaption, .wp-block-gallery figcaption, .wp-block-image figcaption, .wp-block-table figcaption, .wp-block-video figcaption){color: var(--wp--preset--color--contrast);font-size: var(--wp--preset--font-size--x-small);margin-top: var(--wp--preset--spacing--30);margin-bottom: var(--wp--preset--spacing--50);}.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-base-color{color: var(--wp--preset--color--base) !important;}.has-contrast-color{color: var(--wp--preset--color--contrast) !important;}.has-primary-color{color: var(--wp--preset--color--primary) !important;}.has-secondary-color{color: var(--wp--preset--color--secondary) !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-base-background-color{background-color: var(--wp--preset--color--base) !important;}.has-contrast-background-color{background-color: var(--wp--preset--color--contrast) !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-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-base-border-color{border-color: var(--wp--preset--color--base) !important;}.has-contrast-border-color{border-color: var(--wp--preset--color--contrast) !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-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-x-small-font-size{font-size: var(--wp--preset--font-size--x-small) !important;}.has-xx-large-font-size{font-size: var(--wp--preset--font-size--xx-large) !important;}.has-xxx-large-font-size{font-size: var(--wp--preset--font-size--xxx-large) !important;}.has-huge-font-size{font-size: var(--wp--preset--font-size--huge) !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-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-bricolage-grotesque-font-family{font-family: var(--wp--preset--font-family--bricolage-grotesque) !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-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-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !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-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-dm-serif-display-font-family{font-family: var(--wp--preset--font-family--dm-serif-display) !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-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-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !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-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !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-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-jost-font-family{font-family: var(--wp--preset--font-family--jost) !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-literata-font-family{font-family: var(--wp--preset--font-family--literata) !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-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-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-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-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !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-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-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-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !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-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;}.has-system-font-font-family{font-family: var(--wp--preset--font-family--system-font) !important;}
:root :where(.wp-block-post-template-is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.wp-block-post-template-is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.wp-block-post-template-is-layout-flow) > *{margin-block-start: var(--wp--preset--spacing--40);margin-block-end: 0;}:root :where(.wp-block-post-template-is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.wp-block-post-template-is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.wp-block-post-template-is-layout-constrained) > *{margin-block-start: var(--wp--preset--spacing--40);margin-block-end: 0;}:root :where(.wp-block-post-template-is-layout-flex){gap: var(--wp--preset--spacing--40);}:root :where(.wp-block-post-template-is-layout-grid){gap: var(--wp--preset--spacing--40);}
:root :where(.wp-block-list){padding-left: var(--wp--preset--spacing--40);}
:root :where(.wp-block-navigation){font-size: var(--wp--preset--font-size--small);font-style: italic;}
:root :where(p){line-height: calc(1em + 0.75rem);}
:root :where(.wp-block-post-author-name){color: var(--wp--preset--color--tertiary);font-size: var(--wp--preset--font-size--x-small);}
:root :where(.wp-block-post-author-name a:where(:not(.wp-element-button))){color: var(--wp--preset--color--tertiary);text-decoration: none;}
:root :where(.wp-block-post-author-name a:where(:not(.wp-element-button)):hover){color: var(--wp--preset--color--primary);}
:root :where(.wp-block-post-date){font-size: var(--wp--preset--font-size--x-small);}
:root :where(.wp-block-post-date a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast);}
:root :where(.wp-block-post-date a:where(:not(.wp-element-button)):hover){color: var(--wp--preset--color--primary);}
:root :where(.wp-block-post-excerpt.wp-block-post-excerpt .wp-block-post-excerpt__excerpt){line-height: inherit;}
:root :where(.wp-block-post-terms){font-size: var(--wp--preset--font-size--x-small);font-style: italic;font-weight: 500;}
:root :where(.wp-block-post-terms a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast);}
:root :where(.wp-block-post-terms a:where(:not(.wp-element-button)):hover){color: var(--wp--preset--color--primary);}
:root :where(.wp-block-post-title){color: var(--wp--preset--color--contrast);font-size: var(--wp--preset--font-size--x-large);}
:root :where(.wp-block-post-title a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast);}
:root :where(.wp-block-post-title a:where(:not(.wp-element-button)):hover){color: var(--wp--preset--color--primary);}
:root :where(.wp-block-search){font-size: var(--wp--preset--font-size--x-small);line-height: 1;}:root :where(.wp-block-search.wp-block-search__button-outside .wp-block-search__input, .wp-block-search.wp-block-search__button-outside .wp-block-search__button, .wp-block-search.wp-block-search__no-button .wp-block-search__input, .wp-block-search.wp-block-search__button-only .wp-block-search__input, .wp-block-search.wp-block-search__button-only .wp-block-search__button, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper){border-radius: 0;}:root :where(.wp-block-search :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input){padding: 0 8px;}
:root :where(.wp-block-search .wp-element-button,.wp-block-search  .wp-block-button__link){margin-left: 4px;padding: 8px;}
:root :where(.wp-block-social-links-is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.wp-block-social-links-is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.wp-block-social-links-is-layout-flow) > *{margin-block-start: var(--wp--preset--spacing--40);margin-block-end: 0;}:root :where(.wp-block-social-links-is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.wp-block-social-links-is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.wp-block-social-links-is-layout-constrained) > *{margin-block-start: var(--wp--preset--spacing--40);margin-block-end: 0;}:root :where(.wp-block-social-links-is-layout-flex){gap: var(--wp--preset--spacing--40);}:root :where(.wp-block-social-links-is-layout-grid){gap: var(--wp--preset--spacing--40);}
:root :where(.wp-block-spacer){margin-top: 0;margin-bottom: 0;}
:root :where(.wp-block-group){padding-right: var(--wp--preset--spacing--30);padding-left: var(--wp--preset--spacing--30);}
/*# sourceURL=global-styles-inline-css */
</style>
<style id="core-block-supports-inline-css">
.wp-elements-d5d9a0df009114e78bb145cf2e18bb8d a:where(:not(.wp-element-button)){color:var(--wp--preset--color--base);}.wp-container-core-social-links-is-layout-2cb8c2c9{justify-content:center;}.wp-container-core-columns-is-layout-6331a4ef{flex-wrap:nowrap;gap:var(--wp--preset--spacing--30) var(--wp--preset--spacing--30);}.wp-container-core-navigation-is-layout-a5cd542e{justify-content:center;}.wp-container-core-group-is-layout-6bdab0f3 > *{margin-block-start:0;margin-block-end:0;}.wp-container-core-group-is-layout-6bdab0f3 > * + *{margin-block-start:var(--wp--preset--spacing--40);margin-block-end:0;}.wp-elements-b4c442fc7d4ad9e5769f951745843dca a:where(:not(.wp-element-button)):hover{color:var(--wp--preset--color--primary);}.wp-elements-c296ef2db1dc7cb54128b41818b7a708 a:where(:not(.wp-element-button)):hover{color:var(--wp--preset--color--primary);}.wp-container-core-group-is-layout-e290f109 > *{margin-block-start:0;margin-block-end:0;}.wp-container-core-group-is-layout-e290f109 > * + *{margin-block-start:0.5rem;margin-block-end:0;}.wp-container-core-group-is-layout-9f1fbcbd > *{margin-block-start:0;margin-block-end:0;}.wp-container-core-group-is-layout-9f1fbcbd > * + *{margin-block-start:0.25rem;margin-block-end:0;}.wp-container-core-post-template-is-layout-8f71ceff{grid-template-columns:repeat(3, minmax(0, 1fr));}.wp-container-core-columns-is-layout-79fb870f{flex-wrap:nowrap;}.wp-container-core-group-is-layout-37ccdb05 > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width:1200px;margin-left:auto !important;margin-right:auto !important;}.wp-container-core-group-is-layout-37ccdb05 > .alignwide{max-width:1200px;}.wp-container-core-group-is-layout-37ccdb05 .alignfull{max-width:none;}.wp-container-core-post-template-is-layout-c4c1eb86{grid-template-columns:repeat(6, minmax(0, 1fr));}.wp-container-core-group-is-layout-cd8e67f9 > *{margin-block-start:0;margin-block-end:0;}.wp-container-core-group-is-layout-cd8e67f9 > * + *{margin-block-start:8px;margin-block-end:0;}.wp-container-core-post-template-is-layout-10537e80{grid-template-columns:repeat(1, minmax(0, 1fr));gap:var(--wp--preset--spacing--30);}.wp-container-core-group-is-layout-96598206 > .alignfull{margin-right:calc(var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)) * -1);margin-left:calc(var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal)) * -1);}.wp-container-core-post-template-is-layout-825c4771{grid-template-columns:repeat(2, minmax(0, 1fr));gap:var(--wp--preset--spacing--30);}.wp-container-core-post-template-is-layout-84506733{grid-template-columns:repeat(3, minmax(0, 1fr));gap:var(--wp--preset--spacing--30);}.wp-container-content-9cfa9a5a{flex-grow:1;}.wp-container-core-group-is-layout-b7625615{flex-wrap:nowrap;}.wp-container-core-post-template-is-layout-33d71ff5 > *{margin-block-start:0;margin-block-end:0;}.wp-container-core-post-template-is-layout-33d71ff5 > * + *{margin-block-start:0;margin-block-end:0;}.wp-container-core-group-is-layout-04834cbf > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width:1200px;margin-left:auto !important;margin-right:auto !important;}.wp-container-core-group-is-layout-04834cbf > .alignwide{max-width:1200px;}.wp-container-core-group-is-layout-04834cbf .alignfull{max-width:none;}.wp-container-core-post-template-is-layout-0eb934a7{grid-template-columns:repeat(5, minmax(0, 1fr));gap:var(--wp--preset--spacing--30);}.wp-elements-83ce8d173441890f59d9af5298e5f65f a:where(:not(.wp-element-button)){color:var(--wp--preset--color--base);}.wp-container-core-social-links-is-layout-f420c6cc{justify-content:center;}.wp-container-core-navigation-is-layout-ee856660{justify-content:center;}
/*# sourceURL=core-block-supports-inline-css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-64-1' href='/_static/??-eJx9i0sOwjAMBS9EMJ+KdlNxljZyQ6gdR7GjitsTdmXT3ZunGdiy85IMk4G9kFEhF+RYGdq3VlD7EJ696gl2KleXqYaYFArOJKHNAM3a4VEUUByJnyxK+gO30BTLL33yeO3v/eM2dMPl/QUfdD4j&cssminify=yes' type='text/css' media='all' />
<style id="jetpack-global-styles-frontend-style-inline-css">
:root { --font-headings: unset; --font-base: unset; --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;}
/*# sourceURL=jetpack-global-styles-frontend-style-inline-css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-66-1' href='/_static/??-eJyNjcEKwjAQRH/IuBSixYP4KZJmQ7p1swndhNK/t0ovIoi3NzDzBpZifJYapEJqpnCLJApTqMX5x55Bm0DK2Dgo6OjmgA5xfSNJPHrVA/wtupN4GBoxgmZPjg3nmPUjfCnrGNJ2PlqInAfHvz4XwhiqwlbZ2cSZ0DhBw6T1tb2la9f39mRtd75MTxo0YTU=&cssminify=yes' type='text/css' media='all' />
<script id="wpcom-actionbar-placeholder-js-extra">
var actionbardata = {"siteID":"54736365","postID":"0","siteURL":"https://opentheword.org","xhrURL":"https://opentheword.org/wp-admin/admin-ajax.php","nonce":"f21b8bcedc","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https://s0.wp.com/wp-content/js/wpcom-proxy-request.js?m=1513050504i&amp;ver=20211021","i18n":{"followedText":"New posts from this site will now appear in your \u003Ca href=\"https://wordpress.com/reader\"\u003EReader\u003C/a\u003E","foldBar":"Collapse this bar","unfoldBar":"Expand this bar","shortLinkCopied":"Shortlink copied to clipboard."}};
//# sourceURL=wpcom-actionbar-placeholder-js-extra
</script>
<script id="jetpack-blocks-assets-base-url-js-before">
var Jetpack_Block_Assets_Base_Url="https://s0.wp.com/wp-content/mu-plugins/jetpack-plugin/sun/_inc/blocks/";
//# sourceURL=jetpack-blocks-assets-base-url-js-before
</script>
<script id="jetpack-mu-wpcom-settings-js-before">
var JETPACK_MU_WPCOM_SETTINGS = {"assetsUrl":"https://s1.wp.com/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/sun/jetpack_vendor/automattic/jetpack-mu-wpcom/src/build/"};
//# sourceURL=jetpack-mu-wpcom-settings-js-before
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/_static/??/wp-content/js/rlt-proxy.js,/wp-content/blog-plugins/wordads-classes/js/cmp/v2/cmp-non-gdpr.js?m=1780567333j'></script>
<script id="rlt-proxy-js-after">
	rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
//# sourceURL=rlt-proxy-js-after
</script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://openthewordblog.wordpress.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress.com" />
<link rel='shortlink' href='https://wp.me/3HFqB' />

<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="OpentheWord.org" />
<meta property="og:description" content="A bit of Bible, A bit of Life, A bit of Politics" />
<meta property="og:url" content="https://opentheword.org/" />
<meta property="og:site_name" content="OpentheWord.org" />
<meta property="og:image" content="https://opentheword.org/wp-content/uploads/2024/08/opentheword-white-4.png" />
<meta property="og:image:width" content="1024" />
<meta property="og:image:height" content="288" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:creator" content="@opentheword" />
<meta name="twitter:site" content="@opentheword" />

<!-- End Jetpack Open Graph Tags -->
<link rel="shortcut icon" type="image/x-icon" href="https://s1.wp.com/i/favicon.ico?m=1713425267i" sizes="16x16 24x24 32x32 48x48" />
<link rel="icon" type="image/x-icon" href="https://s1.wp.com/i/favicon.ico?m=1713425267i" sizes="16x16 24x24 32x32 48x48" />
<link rel="apple-touch-icon" href="https://s2.wp.com/i/webclip.png?m=1713868326i" />
<link rel='openid.server' href='https://opentheword.org/?openidserver=1' />
<link rel='openid.delegate' href='https://opentheword.org/' />
<link rel="search" type="application/opensearchdescription+xml" href="https://opentheword.org/osd.xml" title="OpentheWord.org" />
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
<script id="wp-importmap" type="importmap">
{"imports":{"@wordpress/interactivity":"/wp-content/plugins/gutenberg-core/v23.3.2/build/modules/interactivity/index.min.js?m=1780625085i&ver=efaa5193bbad9c60ffd1","@wordpress/interactivity-router":"/wp-content/plugins/gutenberg-core/v23.3.2/build/modules/interactivity-router/index.min.js?m=1780625085i&ver=71aa17bac91628a0f874","@wordpress/a11y":"/wp-content/plugins/gutenberg-core/v23.3.2/build/modules/a11y/index.min.js?m=1780625236i&ver=1c371cb517a97cdbcb9f"}}
</script>
<link rel="modulepreload" href="/wp-content/plugins/gutenberg-core/v23.3.2/build/modules/interactivity/index.min.js?m=1780625085i&#038;ver=efaa5193bbad9c60ffd1" id="@wordpress/interactivity-js-modulepreload" fetchpriority="low">
		<style type="text/css">
			.recentcomments a {
				display: inline !important;
				padding: 0 !important;
				margin: 0 !important;
			}

			table.recentcommentsavatartop img.avatar, table.recentcommentsavatarend img.avatar {
				border: 0px;
				margin: 0;
			}

			table.recentcommentsavatartop a, table.recentcommentsavatarend a {
				border: 0px !important;
				background-color: transparent !important;
			}

			td.recentcommentsavatarend, td.recentcommentsavatartop {
				padding: 0px 0px 1px 0px;
				margin: 0px;
			}

			td.recentcommentstextend {
				border: none !important;
				padding: 0px 0px 2px 10px;
			}

			.rtl td.recentcommentstextend {
				padding: 0px 10px 2px 0px;
			}

			td.recentcommentstexttop {
				border: none;
				padding: 0px 0px 0px 10px;
			}

			.rtl td.recentcommentstexttop {
				padding: 0px 10px 0px 0px;
			}
		</style>
		<meta name="description" content="A bit of Bible, A bit of Life, A bit of Politics" />
<script>
var wa_client = {}; wa_client.cmd = []; wa_client.config = { 'blog_id': 54736365, 'blog_language': 'en', 'is_wordads': true, 'hosting_type': 1, 'afp_account_id': 'pub-6434535965763250', 'afp_host_id': 5038568878849053, 'theme': 'premium/tenku', '_': { 'title': 'Advertisement', 'privacy_settings': 'Privacy Settings' }, 'formats': [ 'belowpost', 'bottom_sticky', 'sidebar_sticky_right', 'sidebar', 'top', 'shortcode', 'gutenberg_rectangle', 'gutenberg_leaderboard', 'gutenberg_mobile_leaderboard', 'gutenberg_skyscraper' ] };
</script>
		<script type="text/javascript">

			window.doNotSellCallback = function() {

				var linkElements = [
					'a[href="https://wordpress.com/?ref=footer_blog"]',
					'a[href="https://wordpress.com/?ref=footer_website"]',
					'a[href="https://wordpress.com/?ref=vertical_footer"]',
					'a[href^="https://wordpress.com/?ref=footer_segment_"]',
				].join(',');

				var dnsLink = document.createElement( 'a' );
				dnsLink.href = 'https://wordpress.com/advertising-program-optout/';
				dnsLink.classList.add( 'do-not-sell-link' );
				dnsLink.rel = 'nofollow';
				dnsLink.style.marginLeft = '0.5em';
				dnsLink.textContent = 'Do Not Sell or Share My Personal Information';

				var creditLinks = document.querySelectorAll( linkElements );

				if ( 0 === creditLinks.length ) {
					return false;
				}

				Array.prototype.forEach.call( creditLinks, function( el ) {
					el.insertAdjacentElement( 'afterend', dnsLink );
				});

				return true;
			};

		</script>
		<style class="wp-fonts-local">
@font-face{font-family:Raleway;font-style:normal;font-weight:100;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CKNLA3JC9c.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:normal;font-weight:200;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCKNLA3JC9c.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:normal;font-weight:300;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCKNLA3JC9c.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:normal;font-weight:400;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCKNLA3JC9c.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:normal;font-weight:500;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCKNLA3JC9c.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:normal;font-weight:600;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCKNLA3JC9c.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:normal;font-weight:700;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCKNLA3JC9c.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:normal;font-weight:800;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCKNLA3JC9c.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:normal;font-weight:900;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCKNLA3JC9c.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:italic;font-weight:100;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrEVIT9c2c8.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:italic;font-weight:200;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrEVIT9c2c8.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:italic;font-weight:300;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrEVIT9c2c8.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:italic;font-weight:400;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrEVIT9c2c8.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:italic;font-weight:500;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrEVIT9c2c8.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:italic;font-weight:600;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrEVIT9c2c8.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:italic;font-weight:700;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrEVIT9c2c8.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:italic;font-weight:800;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrEVIT9c2c8.woff2') format('woff2');}
@font-face{font-family:Raleway;font-style:italic;font-weight:900;font-display:fallback;src:url('https://fonts.wp.com/s/raleway/v29/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrEVIT9c2c8.woff2') format('woff2');}
@font-face{font-family:Sora;font-style:normal;font-weight:100;font-display:fallback;src:url('https://fonts.wp.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSdSn3-PIwNhBti0.woff2') format('woff2');}
@font-face{font-family:Sora;font-style:normal;font-weight:200;font-display:fallback;src:url('https://fonts.wp.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSfSnn-PIwNhBti0.woff2') format('woff2');}
@font-face{font-family:Sora;font-style:normal;font-weight:300;font-display:fallback;src:url('https://fonts.wp.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmScMnn-PIwNhBti0.woff2') format('woff2');}
@font-face{font-family:Sora;font-style:normal;font-weight:400;font-display:fallback;src:url('https://fonts.wp.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSdSnn-PIwNhBti0.woff2') format('woff2');}
@font-face{font-family:Sora;font-style:normal;font-weight:500;font-display:fallback;src:url('https://fonts.wp.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSdgnn-PIwNhBti0.woff2') format('woff2');}
@font-face{font-family:Sora;font-style:normal;font-weight:600;font-display:fallback;src:url('https://fonts.wp.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSeMmX-PIwNhBti0.woff2') format('woff2');}
@font-face{font-family:Sora;font-style:normal;font-weight:700;font-display:fallback;src:url('https://fonts.wp.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSe1mX-PIwNhBti0.woff2') format('woff2');}
@font-face{font-family:Sora;font-style:normal;font-weight:800;font-display:fallback;src:url('https://fonts.wp.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSfSmX-PIwNhBti0.woff2') format('woff2');}
</style>
<!-- Jetpack Google Analytics -->
			<script type='text/javascript'>
				var _gaq = _gaq || [];
				_gaq.push(['_setAccount', 'UA-151881431-1']);
_gaq.push(['_trackPageview']);
				(function() {
					var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
					ga.src = ('https:' === document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
					var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
				})();
			</script>
			<!-- End Jetpack Google Analytics -->
<script type="text/javascript">
	window.google_analytics_uacct = "UA-52447-2";
</script>

<script type="text/javascript">
	var _gaq = _gaq || [];
	_gaq.push(['_setAccount', 'UA-52447-2']);
	_gaq.push(['_gat._anonymizeIp']);
	_gaq.push(['_setDomainName', 'none']);
	_gaq.push(['_setAllowLinker', true]);
	_gaq.push(['_initData']);
	_gaq.push(['_trackPageview']);

	(function() {
		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
		(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
	})();
</script>
</head>

<body class="home blog wp-custom-logo wp-embed-responsive wp-theme-premiumtenku is-block-theme customizer-styles-applied jetpack-reblog-enabled">

<a class="skip-link screen-reader-text" id="wp-skip-link" href="#wp--skip-link--target">Skip to content</a><div class="wp-site-blocks"><header class="wp-block-template-part">
<div class="wp-block-group has-base-color has-contrast-background-color has-text-color has-background has-link-color wp-elements-d5d9a0df009114e78bb145cf2e18bb8d has-global-padding is-layout-constrained wp-container-core-group-is-layout-6bdab0f3 wp-block-group-is-layout-constrained" style="padding-top:var(--wp--preset--spacing--40)">
<div class="wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow">
<div class="wp-block-columns are-vertically-aligned-center is-layout-flex wp-container-core-columns-is-layout-6331a4ef wp-block-columns-is-layout-flex">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:164px">
<ul class="wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only is-content-justification-center is-layout-flex wp-container-core-social-links-is-layout-2cb8c2c9 wp-block-social-links-is-layout-flex"><li style="color:#ffffff" class="wp-social-link wp-social-link-facebook has-base-color wp-block-social-link"><a href="#" 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="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Facebook</span></a></li>

<li style="color:#ffffff" class="wp-social-link wp-social-link-twitter has-base-color wp-block-social-link"><a href="#" 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:#ffffff" class="wp-social-link wp-social-link-instagram has-base-color wp-block-social-link"><a href="#" 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="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Instagram</span></a></li>

<li style="color:#ffffff" class="wp-social-link wp-social-link-tiktok has-base-color wp-block-social-link"><a href="#" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M16.708 0.027c1.745-0.027 3.48-0.011 5.213-0.027 0.105 2.041 0.839 4.12 2.333 5.563 1.491 1.479 3.6 2.156 5.652 2.385v5.369c-1.923-0.063-3.855-0.463-5.6-1.291-0.76-0.344-1.468-0.787-2.161-1.24-0.009 3.896 0.016 7.787-0.025 11.667-0.104 1.864-0.719 3.719-1.803 5.255-1.744 2.557-4.771 4.224-7.88 4.276-1.907 0.109-3.812-0.411-5.437-1.369-2.693-1.588-4.588-4.495-4.864-7.615-0.032-0.667-0.043-1.333-0.016-1.984 0.24-2.537 1.495-4.964 3.443-6.615 2.208-1.923 5.301-2.839 8.197-2.297 0.027 1.975-0.052 3.948-0.052 5.923-1.323-0.428-2.869-0.308-4.025 0.495-0.844 0.547-1.485 1.385-1.819 2.333-0.276 0.676-0.197 1.427-0.181 2.145 0.317 2.188 2.421 4.027 4.667 3.828 1.489-0.016 2.916-0.88 3.692-2.145 0.251-0.443 0.532-0.896 0.547-1.417 0.131-2.385 0.079-4.76 0.095-7.145 0.011-5.375-0.016-10.735 0.025-16.093z" /></svg><span class="wp-block-social-link-label screen-reader-text">TikTok</span></a></li>

<li style="color:#ffffff" class="wp-social-link wp-social-link-youtube has-base-color wp-block-social-link"><a href="#" 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="M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"></path></svg><span class="wp-block-social-link-label screen-reader-text">YouTube</span></a></li></ul>
</div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:300px"><form role="search" method="get" action="https://opentheword.org/" class="wp-block-search__button-inside wp-block-search__icon-button wp-block-search"    ><label class="wp-block-search__label screen-reader-text" for="wp-block-search__input-1" >Search</label><div class="wp-block-search__inside-wrapper"  style="border-top-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-color: #4a4a4a;border-right-color: #4a4a4a;border-bottom-color: #4a4a4a;border-left-color: #4a4a4a;border-top-style: solid;border-right-style: solid;border-bottom-style: solid;border-left-style: solid"><input class="wp-block-search__input" id="wp-block-search__input-1" placeholder="Search" value="" type="search" name="s" required  style="border-radius: 0px"/><button aria-label="Search" class="wp-block-search__button has-text-color has-base-color has-background has-contrast-background-color has-icon wp-element-button" type="submit"  style="border-radius: 0px"><svg class="search-icon" viewBox="0 0 24 24" width="24" height="24">
					<path d="M13 5c-3.3 0-6 2.7-6 6 0 1.4.5 2.7 1.3 3.7l-3.8 3.8 1.1 1.1 3.8-3.8c1 .8 2.3 1.3 3.7 1.3 3.3 0 6-2.7 6-6S16.3 5 13 5zm0 10.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5z"></path>
				</svg></button></div></form></div>
</div>
</div>


<div class="aligncenter wp-block-site-logo"><a href="https://opentheword.org/" class="custom-logo-link" rel="home" aria-current="page"><img width="483" height="135" src="https://opentheword.org/wp-content/uploads/2024/08/opentheword-white-4.png" class="custom-logo" alt="OpentheWord.org" decoding="async" srcset="https://opentheword.org/wp-content/uploads/2024/08/opentheword-white-4.png?w=483&amp;h=136 483w, https://opentheword.org/wp-content/uploads/2024/08/opentheword-white-4.png?w=966&amp;h=272 966w, https://opentheword.org/wp-content/uploads/2024/08/opentheword-white-4.png?w=500&amp;h=141 500w, https://opentheword.org/wp-content/uploads/2024/08/opentheword-white-4.png?w=768&amp;h=216 768w" sizes="(max-width: 483px) 100vw, 483px" data-attachment-id="95696" data-permalink="https://opentheword.org/opentheword-white-4/" data-orig-file="https://opentheword.org/wp-content/uploads/2024/08/opentheword-white-4.png" data-orig-size="3200,900" 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="opentheword WHITE-4" data-image-description="" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2024/08/opentheword-white-4.png?w=500" /></a></div>


<div class="wp-block-group alignfull has-global-padding is-layout-constrained wp-block-group-is-layout-constrained" style="border-top-color:var(--wp--preset--color--secondary);border-top-style:solid;border-top-width:1px;border-bottom-color:var(--wp--preset--color--secondary);border-bottom-style:solid;border-bottom-width:1px;margin-top:1.5rem;padding-top:1rem;padding-bottom:1rem"><nav class="has-small-font-size is-responsive items-justified-center alignwide wp-block-navigation is-horizontal is-content-justification-center is-layout-flex wp-container-core-navigation-is-layout-a5cd542e wp-block-navigation-is-layout-flex" aria-label="Top Menu" 
		 data-wp-interactive="core/navigation" data-wp-context='{"overlayOpenedBy":{"click":false,"hover":false,"focus":false},"type":"overlay","roleAttribute":"","ariaLabel":"Menu"}'><button aria-haspopup="dialog" aria-label="Open menu" class="wp-block-navigation__responsive-container-open" 
				data-wp-on--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"><path d="M4 7.5h16v1.5H4z"></path><path d="M4 15h16v1.5H4z"></path></svg></button>
				<div class="wp-block-navigation__responsive-container"  id="modal-2" 
				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--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--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-2-content">
								<ul class="wp-block-navigation__container has-small-font-size is-responsive items-justified-center alignwide wp-block-navigation"><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-custom menu-item-object-custom wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://openthewordblog.wordpress.com/" title=""><span class="wp-block-navigation-item__label">Home</span></a></li><li data-wp-context="{ &quot;submenuOpenedBy&quot;: { &quot;click&quot;: false, &quot;hover&quot;: false, &quot;focus&quot;: false }, &quot;type&quot;: &quot;submenu&quot;, &quot;modal&quot;: null, &quot;previousFocus&quot;: null }" data-wp-interactive="core/navigation" data-wp-on--focusout="actions.handleMenuFocusout" data-wp-on--keydown="actions.handleMenuKeydown" data-wp-on--pointerenter="actions.openMenuOnHover" data-wp-on--pointerleave="actions.closeMenuOnHover" data-wp-watch="callbacks.initMenu" tabindex="-1" class="wp-block-navigation-item has-small-font-size has-child open-on-hover-click menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><a class="wp-block-navigation-item__content" href="https://opentheword.org/category/news/" title=""><span class="wp-block-navigation-item__label">News</span></a><button data-wp-bind--aria-expanded="state.isMenuOpen" data-wp-on--click="actions.toggleMenuOnClick" aria-label="News submenu" class="wp-block-navigation__submenu-icon wp-block-navigation-submenu__toggle" ><svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true" focusable="false"><path d="M1.50002 4L6.00002 8L10.5 4" stroke-width="1.5"></path></svg></button><ul data-wp-on--focus="actions.openMenuOnFocus" class="wp-block-navigation__submenu-container menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/abortion/" title=""><span class="wp-block-navigation-item__label">Abortion</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/biography/" title=""><span class="wp-block-navigation-item__label">Biography</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/christmas/" title=""><span class="wp-block-navigation-item__label">Christmas</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/culture/" title=""><span class="wp-block-navigation-item__label">Culture</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/family/" title=""><span class="wp-block-navigation-item__label">Family</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/global-warming/" title=""><span class="wp-block-navigation-item__label">Global warming</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/humour/" title=""><span class="wp-block-navigation-item__label">Humour</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/islam/" title=""><span class="wp-block-navigation-item__label">Islam</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/israel/" title=""><span class="wp-block-navigation-item__label">Israel</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/media/" title=""><span class="wp-block-navigation-item__label">Media</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/persecution/" title=""><span class="wp-block-navigation-item__label">Persecution</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/politics/" title=""><span class="wp-block-navigation-item__label">Politics</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/religious/" title=""><span class="wp-block-navigation-item__label">Religious</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/studies/" title=""><span class="wp-block-navigation-item__label">Studies</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/testimony/" title=""><span class="wp-block-navigation-item__label">Testimony</span></a></li></ul></li><li data-wp-context="{ &quot;submenuOpenedBy&quot;: { &quot;click&quot;: false, &quot;hover&quot;: false, &quot;focus&quot;: false }, &quot;type&quot;: &quot;submenu&quot;, &quot;modal&quot;: null, &quot;previousFocus&quot;: null }" data-wp-interactive="core/navigation" data-wp-on--focusout="actions.handleMenuFocusout" data-wp-on--keydown="actions.handleMenuKeydown" data-wp-on--pointerenter="actions.openMenuOnHover" data-wp-on--pointerleave="actions.closeMenuOnHover" data-wp-watch="callbacks.initMenu" tabindex="-1" class="wp-block-navigation-item has-small-font-size has-child open-on-hover-click menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><a class="wp-block-navigation-item__content" href="https://opentheword.org/category/bible/" title=""><span class="wp-block-navigation-item__label">Bible</span></a><button data-wp-bind--aria-expanded="state.isMenuOpen" data-wp-on--click="actions.toggleMenuOnClick" aria-label="Bible submenu" class="wp-block-navigation__submenu-icon wp-block-navigation-submenu__toggle" ><svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true" focusable="false"><path d="M1.50002 4L6.00002 8L10.5 4" stroke-width="1.5"></path></svg></button><ul data-wp-on--focus="actions.openMenuOnFocus" class="wp-block-navigation__submenu-container menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/opinion/" title=""><span class="wp-block-navigation-item__label">Opinion</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/bible/prayer/" title=""><span class="wp-block-navigation-item__label">Prayer</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://opentheword.org/category/bible/praise-and-worship/"><span class="wp-block-navigation-item__label">Praise and Worship</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/bible/holy-spirit/" title=""><span class="wp-block-navigation-item__label">Holy Spirit</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/bible/spiritual-warfare/" title=""><span class="wp-block-navigation-item__label">Spiritual Warfare</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/bible/teaching/" title=""><span class="wp-block-navigation-item__label">Teaching</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://opentheword.org/category/podcasts/"><span class="wp-block-navigation-item__label">Podcast Notes</span></a></li></ul></li><li data-wp-context="{ &quot;submenuOpenedBy&quot;: { &quot;click&quot;: false, &quot;hover&quot;: false, &quot;focus&quot;: false }, &quot;type&quot;: &quot;submenu&quot;, &quot;modal&quot;: null, &quot;previousFocus&quot;: null }" data-wp-interactive="core/navigation" data-wp-on--focusout="actions.handleMenuFocusout" data-wp-on--keydown="actions.handleMenuKeydown" data-wp-on--pointerenter="actions.openMenuOnHover" data-wp-on--pointerleave="actions.closeMenuOnHover" data-wp-watch="callbacks.initMenu" tabindex="-1" class="wp-block-navigation-item has-small-font-size has-child open-on-hover-click menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><a class="wp-block-navigation-item__content" href="https://opentheword.org/category/women/" title=""><span class="wp-block-navigation-item__label">Women</span></a><button data-wp-bind--aria-expanded="state.isMenuOpen" data-wp-on--click="actions.toggleMenuOnClick" aria-label="Women submenu" class="wp-block-navigation__submenu-icon wp-block-navigation-submenu__toggle" ><svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true" focusable="false"><path d="M1.50002 4L6.00002 8L10.5 4" stroke-width="1.5"></path></svg></button><ul data-wp-on--focus="actions.openMenuOnFocus" class="wp-block-navigation__submenu-container menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/women/arts/" title=""><span class="wp-block-navigation-item__label">Arts</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/women/devotional/" title=""><span class="wp-block-navigation-item__label">Devotional</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/women/emotional-health/" title=""><span class="wp-block-navigation-item__label">Emotional health</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/women/family/" title=""><span class="wp-block-navigation-item__label">Family</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/women/testimonial/" title=""><span class="wp-block-navigation-item__label">Testimonial</span></a></li></ul></li><li data-wp-context="{ &quot;submenuOpenedBy&quot;: { &quot;click&quot;: false, &quot;hover&quot;: false, &quot;focus&quot;: false }, &quot;type&quot;: &quot;submenu&quot;, &quot;modal&quot;: null, &quot;previousFocus&quot;: null }" data-wp-interactive="core/navigation" data-wp-on--focusout="actions.handleMenuFocusout" data-wp-on--keydown="actions.handleMenuKeydown" data-wp-on--pointerenter="actions.openMenuOnHover" data-wp-on--pointerleave="actions.closeMenuOnHover" data-wp-watch="callbacks.initMenu" tabindex="-1" class="wp-block-navigation-item has-small-font-size has-child open-on-hover-click menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><a class="wp-block-navigation-item__content" href="https://opentheword.org/category/arts/" title=""><span class="wp-block-navigation-item__label">Arts</span></a><button data-wp-bind--aria-expanded="state.isMenuOpen" data-wp-on--click="actions.toggleMenuOnClick" aria-label="Arts submenu" class="wp-block-navigation__submenu-icon wp-block-navigation-submenu__toggle" ><svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true" focusable="false"><path d="M1.50002 4L6.00002 8L10.5 4" stroke-width="1.5"></path></svg></button><ul data-wp-on--focus="actions.openMenuOnFocus" class="wp-block-navigation__submenu-container menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><li class="has-small-font-size wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/arts/celebrity-news/"><span class="wp-block-navigation-item__label">Celebrity News</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/arts/music/" title=""><span class="wp-block-navigation-item__label">Music</span></a></li></ul></li><li data-wp-context="{ &quot;submenuOpenedBy&quot;: { &quot;click&quot;: false, &quot;hover&quot;: false, &quot;focus&quot;: false }, &quot;type&quot;: &quot;submenu&quot;, &quot;modal&quot;: null, &quot;previousFocus&quot;: null }" data-wp-interactive="core/navigation" data-wp-on--focusout="actions.handleMenuFocusout" data-wp-on--keydown="actions.handleMenuKeydown" data-wp-on--pointerenter="actions.openMenuOnHover" data-wp-on--pointerleave="actions.closeMenuOnHover" data-wp-watch="callbacks.initMenu" tabindex="-1" class="wp-block-navigation-item has-small-font-size has-child open-on-hover-click menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><a class="wp-block-navigation-item__content" href="https://opentheword.org/category/apologetics/" title=""><span class="wp-block-navigation-item__label">Apologetics</span></a><button data-wp-bind--aria-expanded="state.isMenuOpen" data-wp-on--click="actions.toggleMenuOnClick" aria-label="Apologetics submenu" class="wp-block-navigation__submenu-icon wp-block-navigation-submenu__toggle" ><svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true" focusable="false"><path d="M1.50002 4L6.00002 8L10.5 4" stroke-width="1.5"></path></svg></button><ul data-wp-on--focus="actions.openMenuOnFocus" class="wp-block-navigation__submenu-container menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/apologetics/archaeology/" title=""><span class="wp-block-navigation-item__label">Archaeology</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/apologetics/bible/" title=""><span class="wp-block-navigation-item__label">Bible</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/apologetics/end-times/" title=""><span class="wp-block-navigation-item__label">End times</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/apologetics/miracles/" title=""><span class="wp-block-navigation-item__label">Miracles</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/apologetics/creation/" title=""><span class="wp-block-navigation-item__label">Creation</span></a></li></ul></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/bible/espanol/" title=""><span class="wp-block-navigation-item__label">Español</span></a></li><li class="has-small-font-size wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/podcasts/" title=""><span class="wp-block-navigation-item__label">Podcasts</span></a></li></ul>
								
							</div>
						</div>
					</div>
				</div></nav></div>
</div>
</header>


<main id="wp--skip-link--target" class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-04834cbf wp-block-group-is-layout-constrained">
<div class="wp-block-group alignwide has-global-padding is-layout-constrained wp-container-core-group-is-layout-37ccdb05 wp-block-group-is-layout-constrained" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)">
<div class="wp-block-group alignwide is-layout-flow wp-block-group-is-layout-flow" style="border-bottom-color:var(--wp--preset--color--contrast);border-bottom-style:solid;border-bottom-width:3px;margin-bottom:var(--wp--preset--spacing--50)">
<h2 class="wp-block-heading has-medium-font-size" style="text-transform:uppercase">Latest</h2>
</div>



<div class="wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<div class="wp-block-query is-layout-flow wp-block-query-is-layout-flow"><ul class="wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow"><li class="wp-block-post post-112636 post type-post status-publish format-standard has-post-thumbnail hentry category-praise-and-worship category-teaching tag-christian-rejoicing tag-christian-worship tag-euthumeo tag-expressing-joy tag-james-513 tag-joy-in-gods-presence tag-overflowing-joy tag-praise-and-worship tag-rejoicing-in-the-lord-biblical-joy-sing-psalms tag-rick-renner tag-spiritual-emotions tag-worship">
<figure style="margin-bottom:var(--wp--preset--spacing--40);aspect-ratio:3/2" class="wp-block-post-featured-image"><a href="https://opentheword.org/2026/06/11/is-there-any-merry-among-you/" target="_self"  ><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2020/12/group-people-smiling-smile-clapping-ic-12-8-2020.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Is There Any Merry Among&nbsp;You?" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2020/12/group-people-smiling-smile-clapping-ic-12-8-2020.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2020/12/group-people-smiling-smile-clapping-ic-12-8-2020.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2020/12/group-people-smiling-smile-clapping-ic-12-8-2020.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2020/12/group-people-smiling-smile-clapping-ic-12-8-2020.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="50480" data-permalink="https://opentheword.org/2020/12/11/recent-gallup-poll-shows-why-churches-are-essential/group-people-smiling-smile-clapping-ic-12-8-2020/" data-orig-file="https://opentheword.org/wp-content/uploads/2020/12/group-people-smiling-smile-clapping-ic-12-8-2020.jpg" data-orig-size="1200,800" 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="group-people-smiling-smile-clapping-ic-12-8-2020" data-image-description="" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2020/12/group-people-smiling-smile-clapping-ic-12-8-2020.jpg?w=500" /></a></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-e290f109 wp-block-group-is-layout-constrained"><div class="taxonomy-category wp-elements-b4c442fc7d4ad9e5769f951745843dca wp-block-post-terms has-text-color has-contrast-color"><a href="https://opentheword.org/category/bible/praise-and-worship/" rel="tag">Praise and worship</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/bible/teaching/" rel="tag">Teaching</a></div>

<h2 style="font-style:normal;font-weight:400" class="wp-elements-c296ef2db1dc7cb54128b41818b7a708 wp-block-post-title has-text-color has-contrast-color has-x-large-font-size"><a href="https://opentheword.org/2026/06/11/is-there-any-merry-among-you/" target="_self" >Is There Any Merry Among&nbsp;You?</a></h2>

<div style="line-height:1.5" class="wp-block-post-excerpt has-small-font-size"><p class="wp-block-post-excerpt__excerpt">By Rick Renner: Have you ever experienced something that thrilled you so deeply, you felt as if you’d explode if you couldn’t express your joy about it? If you were alone when this happened, did it sadden you that you had no one to rejoice with you? Did it throw cold water on what you&hellip; </p></div>

<div class="wp-block-post-author-name"><a href="https://opentheword.org/author/maddog34/" target="_self" class="wp-block-post-author-name__link">Guest Post</a></div></div>

</li></ul></div>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<div class="wp-block-query is-layout-flow wp-block-query-is-layout-flow"><ul class="columns-3 wp-block-post-template is-layout-grid wp-container-core-post-template-is-layout-8f71ceff wp-block-post-template-is-layout-grid"><li class="wp-block-post post-112603 post type-post status-publish format-standard has-post-thumbnail hentry category-celebrity-news category-religious category-studies tag-arsenal tag-bible-brothers tag-christian-festival-europe tag-dutch-christian-event tag-gen-z tag-holland tag-holy-spirit-conference tag-jurrien-timber tag-netherlands tag-opwekking-festival tag-opwekking-pentecost-conference tag-pentecost-2026 tag-pentecost-netherlands tag-walibi-holland">
<figure style="margin-bottom:var(--wp--preset--spacing--40);aspect-ratio:3/2" class="wp-block-post-featured-image"><a href="https://opentheword.org/2026/06/10/over-60000-attend-christian-pentecost-rally-in-holland/" target="_self"  ><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2022/07/holland-dutch-netherlands-windmills-ic-7-7-2022.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Over 60,000 Attend Christian Pentecost Rally in&nbsp;Holland" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2022/07/holland-dutch-netherlands-windmills-ic-7-7-2022.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2022/07/holland-dutch-netherlands-windmills-ic-7-7-2022.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2022/07/holland-dutch-netherlands-windmills-ic-7-7-2022.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2022/07/holland-dutch-netherlands-windmills-ic-7-7-2022.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="74059" data-permalink="https://opentheword.org/2022/07/07/the-lefts-attack-on-agriculture-takes-a-sinister-turn-in-holland/village-of-zaanse-chance/" data-orig-file="https://opentheword.org/wp-content/uploads/2022/07/holland-dutch-netherlands-windmills-ic-7-7-2022.jpg" data-orig-size="1200,800" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 5D Mark II&quot;,&quot;caption&quot;:&quot;the village of Zaanse Chance near Amsterdam. Netherlands&quot;,&quot;created_timestamp&quot;:&quot;1431788953&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;105&quot;,&quot;iso&quot;:&quot;160&quot;,&quot;shutter_speed&quot;:&quot;0.004&quot;,&quot;title&quot;:&quot;village of Zaanse Chance&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="village of Zaanse Chance" data-image-description="" data-image-caption="&lt;p&gt;the village of Zaanse Chance near Amsterdam. Netherlands&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2022/07/holland-dutch-netherlands-windmills-ic-7-7-2022.jpg?w=500" /></a></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-9f1fbcbd wp-block-group-is-layout-constrained"><div class="taxonomy-category wp-block-post-terms has-x-small-font-size"><a href="https://opentheword.org/category/arts/celebrity-news/" rel="tag">Celebrity News</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/news/religious/" rel="tag">Religious</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/news/studies/" rel="tag">Studies</a></div>

<h2 style="font-style:normal;font-weight:400" class="wp-block-post-title has-medium-font-size"><a href="https://opentheword.org/2026/06/10/over-60000-attend-christian-pentecost-rally-in-holland/" target="_self" >Over 60,000 Attend Christian Pentecost Rally in&nbsp;Holland</a></h2>

<div class="wp-block-post-author-name has-x-small-font-size"><a href="https://opentheword.org/author/foxdog1020/" target="_self" class="wp-block-post-author-name__link">Dean Smith</a></div></div>

</li><li class="wp-block-post post-112576 post type-post status-publish format-standard has-post-thumbnail hentry category-arts category-spiritual category-the-arts category-women tag-anointing tag-anointing-oil tag-bride-of-messiah tag-fragrance-of-christ tag-frangrance tag-helene-rudolph tag-holy-spirit tag-intimacy-with-god tag-oil tag-perfume tag-preparation-of-the-bride tag-spiritual-discernment tag-spiritual-growth">
<figure style="margin-bottom:var(--wp--preset--spacing--40);aspect-ratio:3/2" class="wp-block-post-featured-image"><a href="https://opentheword.org/2026/06/09/fragrance-and-oil/" target="_self"  ><img width="1024" height="512" src="https://opentheword.org/wp-content/uploads/2026/06/fragrance-oils-credit-christin-hume-unsplash.com_.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Fragrance and Oil" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/06/fragrance-oils-credit-christin-hume-unsplash.com_.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/06/fragrance-oils-credit-christin-hume-unsplash.com_.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/06/fragrance-oils-credit-christin-hume-unsplash.com_.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/06/fragrance-oils-credit-christin-hume-unsplash.com_.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="112584" data-permalink="https://opentheword.org/2026/06/09/fragrance-and-oil/fragrance-oils-credit-christin-hume-unsplash-com/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/06/fragrance-oils-credit-christin-hume-unsplash.com_.jpg" data-orig-size="1200,600" 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;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Fragrance oils Credit Christin Hume, unsplash.com" data-image-description="&lt;p&gt;Pouring essential oils on hand&lt;/p&gt;
" data-image-caption="&lt;p&gt;Credit Christin Hume, unsplash.com&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2026/06/fragrance-oils-credit-christin-hume-unsplash.com_.jpg?w=500" /></a></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-9f1fbcbd wp-block-group-is-layout-constrained"><div class="taxonomy-category wp-block-post-terms has-x-small-font-size"><a href="https://opentheword.org/category/arts/" rel="tag">Arts</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/women/spiritual/" rel="tag">Spiritual</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/arts/the-arts/" rel="tag">The Arts</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/women/" rel="tag">Women</a></div>

<h2 style="font-style:normal;font-weight:400" class="wp-block-post-title has-medium-font-size"><a href="https://opentheword.org/2026/06/09/fragrance-and-oil/" target="_self" >Fragrance and Oil</a></h2>

<div class="wp-block-post-author-name has-x-small-font-size"><a href="https://opentheword.org/author/maddog34/" target="_self" class="wp-block-post-author-name__link">Guest Post</a></div></div>

</li><li class="wp-block-post post-112549 post type-post status-publish format-standard has-post-thumbnail hentry category-archaeology tag-597-bc-babylonian-exile tag-ark-of-the-covenant tag-babylon tag-bible tag-biblical-archaeology tag-faith tag-first-temple tag-god tag-jeremiah tag-jesus tag-nebuchadnezzar tag-nebuchadnezzar-chronicle tag-siege-of-jerusalem">
<figure style="margin-bottom:var(--wp--preset--spacing--40);aspect-ratio:3/2" class="wp-block-post-featured-image"><a href="https://opentheword.org/2026/06/08/why-the-ancient-nebuchadnezzar-chronicle-was-nicknamed-the-jerusalem-chronicle/" target="_self"  ><img width="1024" height="512" src="https://opentheword.org/wp-content/uploads/2026/06/babylonian-siege-of-jerusalem-by-james-tissot-1836-1902-wikipedia-public-domain.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Why the Ancient Nebuchadnezzar Chronicle Was Nicknamed the Jerusalem&nbsp;Chronicle?" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/06/babylonian-siege-of-jerusalem-by-james-tissot-1836-1902-wikipedia-public-domain.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/06/babylonian-siege-of-jerusalem-by-james-tissot-1836-1902-wikipedia-public-domain.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/06/babylonian-siege-of-jerusalem-by-james-tissot-1836-1902-wikipedia-public-domain.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/06/babylonian-siege-of-jerusalem-by-james-tissot-1836-1902-wikipedia-public-domain.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="112560" data-permalink="https://opentheword.org/2026/06/08/why-the-ancient-nebuchadnezzar-chronicle-was-nicknamed-the-jerusalem-chronicle/babylonian-siege-of-jerusalem-by-james-tissot-1836-1902-wikiped/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/06/babylonian-siege-of-jerusalem-by-james-tissot-1836-1902-wikipedia-public-domain.jpg" data-orig-size="1200,600" 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;Babylonian siege of Jerusalem by James Tissot 1836-1902, Wikiped&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Babylonian siege of Jerusalem by James Tissot 1836-1902, Wikiped" data-image-description="&lt;p&gt;Painting of the Babylonian Siege of Jerusalem by James Tissot&lt;/p&gt;
" data-image-caption="&lt;p&gt;Babylonian siege of Jerusalem by James Tissot 1836-1902, Wikiped&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2026/06/babylonian-siege-of-jerusalem-by-james-tissot-1836-1902-wikipedia-public-domain.jpg?w=500" /></a></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-9f1fbcbd wp-block-group-is-layout-constrained"><div class="taxonomy-category wp-block-post-terms has-x-small-font-size"><a href="https://opentheword.org/category/apologetics/archaeology/" rel="tag">Archaeology</a></div>

<h2 style="font-style:normal;font-weight:400" class="wp-block-post-title has-medium-font-size"><a href="https://opentheword.org/2026/06/08/why-the-ancient-nebuchadnezzar-chronicle-was-nicknamed-the-jerusalem-chronicle/" target="_self" >Why the Ancient Nebuchadnezzar Chronicle Was Nicknamed the Jerusalem&nbsp;Chronicle?</a></h2>

<div class="wp-block-post-author-name has-x-small-font-size"><a href="https://opentheword.org/author/foxdog1020/" target="_self" class="wp-block-post-author-name__link">Dean Smith</a></div></div>

</li><li class="wp-block-post post-112521 post type-post status-publish format-standard has-post-thumbnail hentry category-religious category-studies category-teaching tag-bible tag-faith tag-how-many-christians tag-how-many-muslims-in-world tag-jesus tag-lost-coin tag-lost-sheep tag-luke-153-6-parable-of-the-lost-sheep tag-parable-of-lost-son tag-parable-of-the-lost-silver-coin tag-religious-populations tag-world-religion-statistics">
<figure style="margin-bottom:var(--wp--preset--spacing--40);aspect-ratio:3/2" class="wp-block-post-featured-image"><a href="https://opentheword.org/2026/06/07/what-team-are-you-on-what-is-your-religion/" target="_self"  ><img width="1024" height="512" src="https://opentheword.org/wp-content/uploads/2026/06/jesus-and-the-lost-sheep-by-cristobal-garcia-salmeron-1603e280931666-wikipedia-public-domain.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="What team are you on? What is your&nbsp;religion?" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/06/jesus-and-the-lost-sheep-by-cristobal-garcia-salmeron-1603e280931666-wikipedia-public-domain.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/06/jesus-and-the-lost-sheep-by-cristobal-garcia-salmeron-1603e280931666-wikipedia-public-domain.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/06/jesus-and-the-lost-sheep-by-cristobal-garcia-salmeron-1603e280931666-wikipedia-public-domain.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/06/jesus-and-the-lost-sheep-by-cristobal-garcia-salmeron-1603e280931666-wikipedia-public-domain.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="112525" data-permalink="https://opentheword.org/2026/06/07/what-team-are-you-on-what-is-your-religion/jesus-and-the-lost-sheep-by-cristobal-garcia-salmeron-1603-1666-wikipedia-public-domain/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/06/jesus-and-the-lost-sheep-by-cristobal-garcia-salmeron-1603e280931666-wikipedia-public-domain.jpg" data-orig-size="1200,600" 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;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Jesus and the lost sheep by Cristóbal García Salmerón (1603–1666), Wikipedia, Public Domain" data-image-description="&lt;p&gt;Painting of Jesus finding the lost sheep&lt;/p&gt;
" data-image-caption="&lt;p&gt;Jesus and the lost sheep by Cristóbal García Salmerón (1603–1666), Wikipedia, Public Domain&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2026/06/jesus-and-the-lost-sheep-by-cristobal-garcia-salmeron-1603e280931666-wikipedia-public-domain.jpg?w=500" /></a></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-9f1fbcbd wp-block-group-is-layout-constrained"><div class="taxonomy-category wp-block-post-terms has-x-small-font-size"><a href="https://opentheword.org/category/news/religious/" rel="tag">Religious</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/news/studies/" rel="tag">Studies</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/bible/teaching/" rel="tag">Teaching</a></div>

<h2 style="font-style:normal;font-weight:400" class="wp-block-post-title has-medium-font-size"><a href="https://opentheword.org/2026/06/07/what-team-are-you-on-what-is-your-religion/" target="_self" >What team are you on? What is your&nbsp;religion?</a></h2>

<div class="wp-block-post-author-name has-x-small-font-size"><a href="https://opentheword.org/author/smcintos/" target="_self" class="wp-block-post-author-name__link">smcintos</a></div></div>

</li><li class="wp-block-post post-112536 post type-post status-publish format-standard has-post-thumbnail hentry category-espanol category-espanol-32-2 tag-fue-pedro-el-primer-papa tag-la-biblia-apoya-el-papado tag-biblia tag-biblia-y-el-papado tag-blog tag-catolicismo-romano tag-cristianismo tag-doctrina-catolica-romana tag-doctrina-catolica-romana-sobre-el-papado tag-el-papa tag-espanol tag-fe tag-iglesia-catolica-romana tag-jesus tag-sobre-esta-roca-edificare-mi-iglesia-mateo-1618 tag-vlogging">
<figure style="margin-bottom:var(--wp--preset--spacing--40);aspect-ratio:3/2" class="wp-block-post-featured-image"><a href="https://opentheword.org/2026/06/07/doctrina-catolica-romana-fue-pedro-el-primer-papa/" target="_self"  ><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2023/11/st.-peters-basilica-vatican-roman-catholic-church-rome-ic-11-3-2023.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Doctrina Católica Romana: ¿Fue Pedro el primer&nbsp;Papa?" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2023/11/st.-peters-basilica-vatican-roman-catholic-church-rome-ic-11-3-2023.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2023/11/st.-peters-basilica-vatican-roman-catholic-church-rome-ic-11-3-2023.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2023/11/st.-peters-basilica-vatican-roman-catholic-church-rome-ic-11-3-2023.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2023/11/st.-peters-basilica-vatican-roman-catholic-church-rome-ic-11-3-2023.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="88301" data-permalink="https://opentheword.org/2023/11/03/will-the-roman-catholic-church-return-the-items-from-the-jewish-temple-that-it-has-in-its-possession-part-2/st-peters-basilica-vatican-city-italy/" data-orig-file="https://opentheword.org/wp-content/uploads/2023/11/st.-peters-basilica-vatican-roman-catholic-church-rome-ic-11-3-2023.jpg" data-orig-size="1200,800" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;St. Peter&#039;s Basilica, St. Peter&#039;s Square, Vatican City. Panorama&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;32.4&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;St. Peter&#039;s Basilica, Vatican City.  Italy&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="St. Peter&amp;#8217;s Basilica, Vatican City, Rome, Roman Catholic Church ic-11-3-2023" data-image-description="&lt;p&gt;St. Peter&amp;#8217;s Basilica, Vatican City, Rome.&lt;/p&gt;
" data-image-caption="&lt;p&gt;St. Peter&amp;#8217;s Basilica, Vatican City, Rome.&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2023/11/st.-peters-basilica-vatican-roman-catholic-church-rome-ic-11-3-2023.jpg?w=500" /></a></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-9f1fbcbd wp-block-group-is-layout-constrained"><div class="taxonomy-category wp-block-post-terms has-x-small-font-size"><a href="https://opentheword.org/category/bible/espanol/" rel="tag">Español</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/espanol-32-2/" rel="tag">Espanol-32</a></div>

<h2 style="font-style:normal;font-weight:400" class="wp-block-post-title has-medium-font-size"><a href="https://opentheword.org/2026/06/07/doctrina-catolica-romana-fue-pedro-el-primer-papa/" target="_self" >Doctrina Católica Romana: ¿Fue Pedro el primer&nbsp;Papa?</a></h2>

<div class="wp-block-post-author-name has-x-small-font-size"><a href="https://opentheword.org/author/foxdog1020/" target="_self" class="wp-block-post-author-name__link">Dean Smith</a></div></div>

</li><li class="wp-block-post post-112476 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-teaching tag-1-corinthians-13 tag-1-samuel-16 tag-bible tag-character tag-character-vs-gifting tag-christian-leadership tag-christian-living tag-christianity tag-faith tag-gifting tag-gods-testing tag-humility tag-jesus tag-spiritual-gifts tag-spiritual-maturity">
<figure style="margin-bottom:var(--wp--preset--spacing--40);aspect-ratio:3/2" class="wp-block-post-featured-image"><a href="https://opentheword.org/2026/06/05/door-one-or-door-two/" target="_self"  ><img width="1024" height="512" src="https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Door one or door&nbsp;two?" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="112491" data-permalink="https://opentheword.org/2026/06/05/door-one-or-door-two/doors-credit-robert-anasch-unsplash-com/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg" data-orig-size="1200,600" 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;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Doors Credit Robert Anasch, unsplash.com" data-image-description="&lt;p&gt;Two doors on an old house block in Ireland. One door is red and the door on the right is yellow.&lt;/p&gt;
" data-image-caption="&lt;p&gt;Credit: Robert Anasch, unsplash.com&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg?w=500" /></a></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-9f1fbcbd wp-block-group-is-layout-constrained"><div class="taxonomy-category wp-block-post-terms has-x-small-font-size"><a href="https://opentheword.org/category/bible/holy-spirit/" rel="tag">Holy Spirit</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/bible/teaching/" rel="tag">Teaching</a></div>

<h2 style="font-style:normal;font-weight:400" class="wp-block-post-title has-medium-font-size"><a href="https://opentheword.org/2026/06/05/door-one-or-door-two/" target="_self" >Door one or door&nbsp;two?</a></h2>

<div class="wp-block-post-author-name has-x-small-font-size"><a href="https://opentheword.org/author/wljohnston/" target="_self" class="wp-block-post-author-name__link">Wayne Johnston</a></div></div>

</li></ul></div>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>
</div>



<div class="wp-block-group alignwide has-global-padding is-layout-constrained wp-block-group-is-layout-constrained" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)">
<div class="wp-block-query alignwide is-layout-flow wp-block-query-is-layout-flow"><ul class="columns-6 wp-block-post-template is-layout-grid wp-container-core-post-template-is-layout-c4c1eb86 wp-block-post-template-is-layout-grid"><li class="wp-block-post post-11503 post type-post status-publish format-standard has-post-thumbnail hentry category-arts category-celebrity-news category-main category-news category-podcasts category-religious category-z13 tag-armenia tag-armenian-genocide tag-azusa-street tag-bible-podcast tag-biblical-teaching-podcast tag-christian-podcast tag-christianity-podcast tag-dean-smith tag-efim-klubnikin tag-gift-of-prophecy tag-holy-spirit tag-kardashian-family tag-kim-kardashian tag-molokan tag-prophecy tag-revival tag-spiritual-gifts tag-turkey">
<figure style="margin-bottom:var(--wp--preset--spacing--40);aspect-ratio:3/2" class="wp-block-post-featured-image"><a href="https://opentheword.org/2026/06/05/was-kim-kardashians-family-saved-by-a-near-two-hundred-year-old-prophecy/" target="_self"  ><img width="500" height="300" src="https://opentheword.org/wp-content/uploads/2015/02/kimkardashian-eva_rinaldi_foter_cc_by-sa.jpg?w=500" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="164 | Was the Kardashian family saved by a 175-year-old&nbsp;prophecy?" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" data-attachment-id="11512" data-permalink="https://opentheword.org/2026/06/05/was-kim-kardashians-family-saved-by-a-near-two-hundred-year-old-prophecy/kimkardashian-eva_rinaldi_foter_cc_by-sa/" data-orig-file="https://opentheword.org/wp-content/uploads/2015/02/kimkardashian-eva_rinaldi_foter_cc_by-sa.jpg" data-orig-size="500,300" 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="kimKardashian-Eva_Rinaldi_Foter_CC_BY-SA" data-image-description="" data-image-caption="&lt;p&gt;Kim Kardashian Photo: Eva Rinaldi/foter/CC BY-SA&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2015/02/kimkardashian-eva_rinaldi_foter_cc_by-sa.jpg?w=500" /></a></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-9f1fbcbd wp-block-group-is-layout-constrained"><div class="taxonomy-category wp-block-post-terms"><a href="https://opentheword.org/category/arts/" rel="tag">Arts</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/arts/celebrity-news/" rel="tag">Celebrity News</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/main/" rel="tag">Main</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/news/" rel="tag">News</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/podcasts/" rel="tag">Podcasts</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/news/religious/" rel="tag">Religious</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/z13/" rel="tag">z13</a></div>

<h2 style="font-style:normal;font-weight:400" class="wp-block-post-title has-medium-font-size"><a href="https://opentheword.org/2026/06/05/was-kim-kardashians-family-saved-by-a-near-two-hundred-year-old-prophecy/" target="_self" >164 | Was the Kardashian family saved by a 175-year-old&nbsp;prophecy?</a></h2>

<div class="wp-block-post-author-name"><a href="https://opentheword.org/author/foxdog1020/" target="_self" class="wp-block-post-author-name__link">Dean Smith</a></div></div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>

</li><li class="wp-block-post post-112460 post type-post status-publish format-standard has-post-thumbnail hentry category-main category-teaching tag-andrew-hopkins tag-apostle-peter tag-christianity tag-evangelism tag-faith tag-fishers-of-men tag-god tag-hearing-gods-voice tag-jesus tag-matthew-49-follow-me-and-i-will-make-you-fishers-of-men tag-not-ashamed-of-the-gospel tag-voice-of-the-lord">
<figure style="margin-bottom:var(--wp--preset--spacing--40);aspect-ratio:3/2" class="wp-block-post-featured-image"><a href="https://opentheword.org/2026/06/04/how-to-be-fishers-of-men/" target="_self"  ><img width="1024" height="512" src="https://opentheword.org/wp-content/uploads/2026/06/fishing-fishing-rod-james-wheeler-unsplash.com_.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="How to be Fishers of&nbsp;Men" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/06/fishing-fishing-rod-james-wheeler-unsplash.com_.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/06/fishing-fishing-rod-james-wheeler-unsplash.com_.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/06/fishing-fishing-rod-james-wheeler-unsplash.com_.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/06/fishing-fishing-rod-james-wheeler-unsplash.com_.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="112463" data-permalink="https://opentheword.org/2026/06/04/how-to-be-fishers-of-men/fishing-fishing-rod-james-wheeler-unsplash-com/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/06/fishing-fishing-rod-james-wheeler-unsplash.com_.jpg" data-orig-size="1200,600" 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;,&quot;alt&quot;:&quot;&quot;}" data-image-title="fishing fishing rod James Wheeler, unsplash.com" data-image-description="&lt;p&gt;Fishing off a boat in the evening&lt;/p&gt;
" data-image-caption="&lt;p&gt;Credit: James Wheeler, unsplash.com&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2026/06/fishing-fishing-rod-james-wheeler-unsplash.com_.jpg?w=500" /></a></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-9f1fbcbd wp-block-group-is-layout-constrained"><div class="taxonomy-category wp-block-post-terms"><a href="https://opentheword.org/category/main/" rel="tag">Main</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/bible/teaching/" rel="tag">Teaching</a></div>

<h2 style="font-style:normal;font-weight:400" class="wp-block-post-title has-medium-font-size"><a href="https://opentheword.org/2026/06/04/how-to-be-fishers-of-men/" target="_self" >How to be Fishers of&nbsp;Men</a></h2>

<div class="wp-block-post-author-name"><a href="https://opentheword.org/author/maddog34/" target="_self" class="wp-block-post-author-name__link">Guest Post</a></div></div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>

</li><li class="wp-block-post post-112429 post type-post status-publish format-standard has-post-thumbnail hentry category-islam category-israel category-main tag-bible tag-christianity tag-god tag-israel tag-jerusalem tag-jesus tag-jewish-sacrifices tag-jews-attempting-sacrifices-on-temple-mount tag-orthodox-jews tag-passover tag-passover-sacrifice tag-shauvot-sacrifice tag-temple-mount tag-third-jewish-temple">
<figure style="margin-bottom:var(--wp--preset--spacing--40);aspect-ratio:3/2" class="wp-block-post-featured-image"><a href="https://opentheword.org/2026/06/03/orthodox-jews-attempting-again-to-perform-sacrifices-on-the-temple-mount/" target="_self"  ><img width="1024" height="512" src="https://opentheword.org/wp-content/uploads/2026/06/temple-mount-dome-of-the-rock-jerusalem-israel-credit-snowscat-unsplash.com_.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Orthodox Jews Attempting to Perform Sacrifices on the Temple Mount&nbsp;Again" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/06/temple-mount-dome-of-the-rock-jerusalem-israel-credit-snowscat-unsplash.com_.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/06/temple-mount-dome-of-the-rock-jerusalem-israel-credit-snowscat-unsplash.com_.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/06/temple-mount-dome-of-the-rock-jerusalem-israel-credit-snowscat-unsplash.com_.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/06/temple-mount-dome-of-the-rock-jerusalem-israel-credit-snowscat-unsplash.com_.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="112453" data-permalink="https://opentheword.org/2026/06/03/orthodox-jews-attempting-again-to-perform-sacrifices-on-the-temple-mount/temple-mount-dome-of-the-rock-jerusalem-israel-credit-snowscat-unsplash-com/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/06/temple-mount-dome-of-the-rock-jerusalem-israel-credit-snowscat-unsplash.com_.jpg" data-orig-size="1200,600" 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;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Temple Mount Dome of the Rock Jerusalem Israel Credit Snowscat, unsplash.com" data-image-description="&lt;p&gt;Photo of the Temple Mount with Storm clouds in the background&lt;/p&gt;
" data-image-caption="&lt;p&gt;The Temple Mount in Jerusalem Credit: Snowscat, unsplash.com&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2026/06/temple-mount-dome-of-the-rock-jerusalem-israel-credit-snowscat-unsplash.com_.jpg?w=500" /></a></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-9f1fbcbd wp-block-group-is-layout-constrained"><div class="taxonomy-category wp-block-post-terms"><a href="https://opentheword.org/category/news/islam/" rel="tag">Islam</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/news/israel/" rel="tag">Israel</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/main/" rel="tag">Main</a></div>

<h2 style="font-style:normal;font-weight:400" class="wp-block-post-title has-medium-font-size"><a href="https://opentheword.org/2026/06/03/orthodox-jews-attempting-again-to-perform-sacrifices-on-the-temple-mount/" target="_self" >Orthodox Jews Attempting to Perform Sacrifices on the Temple Mount&nbsp;Again</a></h2>

<div class="wp-block-post-author-name"><a href="https://opentheword.org/author/foxdog1020/" target="_self" class="wp-block-post-author-name__link">Dean Smith</a></div></div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>

</li><li class="wp-block-post post-112411 post type-post status-publish format-standard has-post-thumbnail hentry category-arts category-main category-praise-and-worship category-the-arts tag-drummer tag-drumming tag-drumming-can-carry-gods-word tag-drums tag-music tag-psalm-drummers tag-worship-music">
<figure style="margin-bottom:var(--wp--preset--spacing--40);aspect-ratio:3/2" class="wp-block-post-featured-image"><a href="https://opentheword.org/2026/06/02/the-voice-of-drums/" target="_self"  ><img width="1024" height="512" src="https://opentheword.org/wp-content/uploads/2026/06/drums-credit-brent-ninaber-unsplash.com_.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="The Voice of&nbsp;Drums" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/06/drums-credit-brent-ninaber-unsplash.com_.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/06/drums-credit-brent-ninaber-unsplash.com_.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/06/drums-credit-brent-ninaber-unsplash.com_.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/06/drums-credit-brent-ninaber-unsplash.com_.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="112415" data-permalink="https://opentheword.org/2026/06/02/the-voice-of-drums/drums-credit-brent-ninaber-unsplash-com/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/06/drums-credit-brent-ninaber-unsplash.com_.jpg" data-orig-size="1200,600" 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;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Drums Credit Brent Ninaber, unsplash.com" data-image-description="" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2026/06/drums-credit-brent-ninaber-unsplash.com_.jpg?w=500" /></a></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-9f1fbcbd wp-block-group-is-layout-constrained"><div class="taxonomy-category wp-block-post-terms"><a href="https://opentheword.org/category/arts/" rel="tag">Arts</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/main/" rel="tag">Main</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/bible/praise-and-worship/" rel="tag">Praise and worship</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/arts/the-arts/" rel="tag">The Arts</a></div>

<h2 style="font-style:normal;font-weight:400" class="wp-block-post-title has-medium-font-size"><a href="https://opentheword.org/2026/06/02/the-voice-of-drums/" target="_self" >The Voice of&nbsp;Drums</a></h2>

<div class="wp-block-post-author-name"><a href="https://opentheword.org/author/maddog34/" target="_self" class="wp-block-post-author-name__link">Guest Post</a></div></div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>

</li><li class="wp-block-post post-112360 post type-post status-publish format-standard has-post-thumbnail hentry category-main category-prayer category-studies tag-anxiety tag-bible tag-dealing-with-worry tag-faith tag-five-minute-prayers tag-god tag-how-to-pray tag-jesus tag-laying-on-of-hands tag-matthew-67-10-thoughtless-repetitive-prayers-ineffective tag-pray tag-pray-for-people tag-prayer tag-prayer-and-worry tag-prayer-relieves-pain tag-prayer-relieves-worry tag-prayer-study tag-short-prayer tag-short-prayers-work tag-worry tag-worry-and-fear">
<figure style="margin-bottom:var(--wp--preset--spacing--40);aspect-ratio:3/2" class="wp-block-post-featured-image"><a href="https://opentheword.org/2026/06/01/study-reveals-the-effectiveness-of-five-minute-prayers/" target="_self"  ><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2022/11/group-home-people-prayer-ic-11-22-2022.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Study Reveals the Effectiveness of Five Minute&nbsp;Prayers" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2022/11/group-home-people-prayer-ic-11-22-2022.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2022/11/group-home-people-prayer-ic-11-22-2022.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2022/11/group-home-people-prayer-ic-11-22-2022.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2022/11/group-home-people-prayer-ic-11-22-2022.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="78230" data-permalink="https://opentheword.org/2022/11/22/micro-churches-the-new-testament-pattern/%e7%89%87%e7%95%af%e2%81%b0%e6%99%af%e7%80%a0%e6%bd%a5%e6%b1%b0%e2%81%a5%e7%89%b0%e7%a5%a1%e6%b9%a9%e2%81%a7%e7%91%a1%e6%a0%a0%e6%b5%afe/" data-orig-file="https://opentheword.org/wp-content/uploads/2022/11/group-home-people-prayer-ic-11-22-2022.jpg" data-orig-size="1200,800" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;3.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 5D Mark III&quot;,&quot;caption&quot;:&quot;Group of people praying at home&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;63&quot;,&quot;iso&quot;:&quot;320&quot;,&quot;shutter_speed&quot;:&quot;0.00625&quot;,&quot;title&quot;:&quot;\u7247\u756f\u2070\u666f\u7020\u6f65\u6c70\u2065\u7270\u7961\u6e69\u2067\u7461\u6820\u6d6fe&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="" data-image-description="&lt;p&gt;Group of people sitting in a circle praying&lt;/p&gt;
" data-image-caption="&lt;p&gt;Group of people sitting in a circle holding hands and praying&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2022/11/group-home-people-prayer-ic-11-22-2022.jpg?w=500" /></a></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-9f1fbcbd wp-block-group-is-layout-constrained"><div class="taxonomy-category wp-block-post-terms"><a href="https://opentheword.org/category/main/" rel="tag">Main</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/bible/prayer/" rel="tag">Prayer</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/news/studies/" rel="tag">Studies</a></div>

<h2 style="font-style:normal;font-weight:400" class="wp-block-post-title has-medium-font-size"><a href="https://opentheword.org/2026/06/01/study-reveals-the-effectiveness-of-five-minute-prayers/" target="_self" >Study Reveals the Effectiveness of Five Minute&nbsp;Prayers</a></h2>

<div class="wp-block-post-author-name"><a href="https://opentheword.org/author/foxdog1020/" target="_self" class="wp-block-post-author-name__link">Dean Smith</a></div></div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>

</li><li class="wp-block-post post-112315 post type-post status-publish format-standard has-post-thumbnail hentry category-culture category-main category-opinion tag-cool tag-cool-people tag-god tag-god-uses-losers tag-god-uses-rejects tag-jesus tag-jesus-was-from-nazareth tag-john-145-46-can-anything-good-come-out-of-nazareth tag-joseph tag-messiah tag-nazareth">
<figure style="margin-bottom:var(--wp--preset--spacing--40);aspect-ratio:3/2" class="wp-block-post-featured-image"><a href="https://opentheword.org/2026/05/31/being-a-success-are-you-cool/" target="_self"  ><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2020/01/men-ic-1-21-2020.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Being A Success: Are you&nbsp;cool?" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2020/01/men-ic-1-21-2020.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2020/01/men-ic-1-21-2020.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2020/01/men-ic-1-21-2020.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2020/01/men-ic-1-21-2020.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="36314" data-permalink="https://opentheword.org/2020/02/06/men-are-not-stupid/men-ic-1-21-2020/" data-orig-file="https://opentheword.org/wp-content/uploads/2020/01/men-ic-1-21-2020.jpg" data-orig-size="1200,800" 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="men-ic-1-21-2020" data-image-description="" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2020/01/men-ic-1-21-2020.jpg?w=500" /></a></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-9f1fbcbd wp-block-group-is-layout-constrained"><div class="taxonomy-category wp-block-post-terms"><a href="https://opentheword.org/category/news/culture/" rel="tag">Culture</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/main/" rel="tag">Main</a><span class="wp-block-post-terms__separator">, </span><a href="https://opentheword.org/category/opinion/" rel="tag">Opinion</a></div>

<h2 style="font-style:normal;font-weight:400" class="wp-block-post-title has-medium-font-size"><a href="https://opentheword.org/2026/05/31/being-a-success-are-you-cool/" target="_self" >Being A Success: Are you&nbsp;cool?</a></h2>

<div class="wp-block-post-author-name"><a href="https://opentheword.org/author/smcintos/" target="_self" class="wp-block-post-author-name__link">smcintos</a></div></div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
</div>

</li></ul>


<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<div class="wp-block-group alignfull has-global-padding is-content-justification-center is-layout-constrained wp-container-core-group-is-layout-96598206 wp-block-group-is-layout-constrained" style="margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))">
<div style="height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group alignwide has-global-padding is-layout-constrained wp-block-group-is-layout-constrained">
<h2 class="wp-block-heading alignwide has-large-font-size">Defending our Faith</h2>



<div style="height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))" aria-hidden="true" class="wp-block-spacer"></div>



<div data-wp-context="{}" data-wp-interactive="core/query" data-wp-key="9" data-wp-router-region="query-9" class="wp-block-query alignwide is-layout-flow wp-block-query-is-layout-flow"><ul class="columns-1 wp-block-post-template is-layout-grid wp-container-core-post-template-is-layout-10537e80 wp-block-post-template-is-layout-grid"><li data-wp-key="post-template-item-14599" class="wp-block-post post-14599 post type-post status-publish format-standard has-post-thumbnail hentry category-apologetics category-archaeology category-bible-apologetics category-main tag-gospel-of-jesuss-wife tag-jesus tag-jesus-christ">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="299" src="https://opentheword.org/wp-content/uploads/2015/08/desert-2-james-marvin_phelps_foter_cc_by-nc.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Gospel of Jesus&#039; wife fragment. Background photo: Jame Marvin Phelps/Foter/CC BY NC" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2015/08/desert-2-james-marvin_phelps_foter_cc_by-nc.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2015/08/desert-2-james-marvin_phelps_foter_cc_by-nc.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2015/08/desert-2-james-marvin_phelps_foter_cc_by-nc.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2015/08/desert-2-james-marvin_phelps_foter_cc_by-nc.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="14603" data-permalink="https://opentheword.org/2015/08/28/gospel-of-jesuss-wife-a-fake-the-murky-world-of-antiquity-forgeries/desert-2-james-marvin_phelps_foter_cc_by-nc/" data-orig-file="https://opentheword.org/wp-content/uploads/2015/08/desert-2-james-marvin_phelps_foter_cc_by-nc.jpg" data-orig-size="1200,350" 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="desert-2-James-Marvin_Phelps_Foter_CC_BY-NC" data-image-description="&lt;p&gt;Gospel of Jesus&amp;#8217; wife fragment. Background photo: Jame Marvin Phelps/Foter/CC BY NC&lt;/p&gt;
" data-image-caption="&lt;p&gt;Gospel of Jesus&amp;#8217; wife fragment. Background photo: Jame Marvin Phelps/Foter/CC BY NC&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2015/08/desert-2-james-marvin_phelps_foter_cc_by-nc.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2015-08-28T20:03:05-06:00">August 28, 2015</time></div>

<h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2015/08/28/gospel-of-jesuss-wife-a-fake-the-murky-world-of-antiquity-forgeries/" target="_self" >&#8216;Gospel of Jesus&#8217;s Wife&#8217; a fake: the murky world of antiquity&nbsp;forgeries</a></h3></div>
</div>

</li><li data-wp-key="post-template-item-17161" class="wp-block-post post-17161 post type-post status-publish format-standard has-post-thumbnail hentry category-apologetics category-bible-apologetics category-end-times-apologetics category-main category-z17 category-z23 tag-israel tag-jacobs-sheep">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="341" src="https://opentheword.org/wp-content/uploads/2016/03/sheep-jacobssheep-startlelambinengland-flickr-paul_blakeman-flickrcreativecommons.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="One of Jacob&#039;s lambs in England. Photo: Paul Blakeman/Flickr/Creative Commons" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2016/03/sheep-jacobssheep-startlelambinengland-flickr-paul_blakeman-flickrcreativecommons.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2016/03/sheep-jacobssheep-startlelambinengland-flickr-paul_blakeman-flickrcreativecommons.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2016/03/sheep-jacobssheep-startlelambinengland-flickr-paul_blakeman-flickrcreativecommons.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2016/03/sheep-jacobssheep-startlelambinengland-flickr-paul_blakeman-flickrcreativecommons.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="17163" data-permalink="https://opentheword.org/2016/03/24/jacobs-sheep-returning-home/sheep-jacobssheep-startlelambinengland-flickr-paul_blakeman-flickrcreativecommons/" data-orig-file="https://opentheword.org/wp-content/uploads/2016/03/sheep-jacobssheep-startlelambinengland-flickr-paul_blakeman-flickrcreativecommons.jpg" data-orig-size="1200,400" 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="Sheep-jacobsSheep-startlelambinEngland-Flickr-Paul_Blakeman-FlickrCreativeCommons" data-image-description="&lt;p&gt;One of Jacob&amp;#8217;s lambs in England. Photo: Paul Blakeman/Flickr/Creative Commons&lt;/p&gt;
" data-image-caption="&lt;p&gt;One of Jacob&amp;#8217;s lambs in England. Photo: Paul Blakeman/Flickr/Creative Commons&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2016/03/sheep-jacobssheep-startlelambinengland-flickr-paul_blakeman-flickrcreativecommons.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2016-03-24T21:42:24-06:00">March 24, 2016</time></div>

<h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2016/03/24/jacobs-sheep-returning-home/" target="_self" >&#8216;Jacob&#8217;s Sheep&#8217; returning&nbsp;home?</a></h3></div>
</div>

</li><li data-wp-key="post-template-item-24475" class="wp-block-post post-24475 post type-post status-publish format-standard has-post-thumbnail hentry category-apologetics category-end-times-apologetics category-main category-z83 tag-black-death tag-bubonic-plage tag-end-times tag-jehovah-rapha">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="341" src="https://opentheword.org/wp-content/uploads/2017/10/madagascar-school-lemurbaby-wikipedia.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="A school in Madagascar Credit: lemurbaby/Wikipedia" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2017/10/madagascar-school-lemurbaby-wikipedia.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2017/10/madagascar-school-lemurbaby-wikipedia.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2017/10/madagascar-school-lemurbaby-wikipedia.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2017/10/madagascar-school-lemurbaby-wikipedia.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="24488" data-permalink="https://opentheword.org/2017/10/31/something-different-about-this-bubonic-plague-says-health-official/madagascar-school-lemurbaby-wikipedia/" data-orig-file="https://opentheword.org/wp-content/uploads/2017/10/madagascar-school-lemurbaby-wikipedia.jpg" data-orig-size="1200,400" 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="madagascar-school-Lemurbaby-wikipedia" data-image-description="&lt;p&gt;A school in Madagascar Credit: lemurbaby/Wikipedia&lt;/p&gt;
" data-image-caption="&lt;p&gt;A school in Madagascar Credit: lemurbaby/Wikipedia&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2017/10/madagascar-school-lemurbaby-wikipedia.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2017-10-31T08:02:10-06:00">October 31, 2017</time></div>

<h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2017/10/31/something-different-about-this-bubonic-plague-says-health-official/" target="_self" >&#8216;Something different&#8217; about this Bubonic plague says health&nbsp;official</a></h3></div>
</div>

</li><li data-wp-key="post-template-item-4468" class="wp-block-post post-4468 post type-post status-publish format-standard has-post-thumbnail hentry category-apologetics category-archaeology category-z45 tag-byzantine tag-church tag-zechariah">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="250" height="155" src="https://opentheword.org/wp-content/uploads/2014/01/byzantinechurchegypt-wikipedia-marc-ryckaert.jpg?w=250" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" data-attachment-id="4485" data-permalink="https://opentheword.org/2014/01/27/1500-year-old-church-discovered-in-israel-comes-complete-with-a-mystery/byzantinechurchegypt-wikipedia-marc-ryckaert/" data-orig-file="https://opentheword.org/wp-content/uploads/2014/01/byzantinechurchegypt-wikipedia-marc-ryckaert.jpg" data-orig-size="250,155" 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;}" data-image-title="byzantinechurchEgypt-wikipedia-Marc-Ryckaert" data-image-description="" data-image-caption="&lt;p&gt;A Byzantine church discovered in Israel, complete with a secret.&lt;br /&gt;
Photo Byzantine Church in Egypt Wikipedia/Marc Rycharert&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2014/01/byzantinechurchegypt-wikipedia-marc-ryckaert.jpg?w=250" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2014-01-27T07:33:59-06:00">January 27, 2014</time></div>

<h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2014/01/27/1500-year-old-church-discovered-in-israel-comes-complete-with-a-mystery/" target="_self" >1,500-year-old church discovered in Israel comes complete with a&nbsp;mystery</a></h3></div>
</div>

</li><li data-wp-key="post-template-item-27800" class="wp-block-post post-27800 post type-post status-publish format-standard has-post-thumbnail hentry category-apologetics category-creation category-main category-testimony category-z103 tag-11-year-old-boy tag-11-year-old-genius tag-11-year-old-genius-enrolled-in-college tag-11-year-old-genius-graduates-from-college tag-11-year-old-genius-william tag-11-year-old-genius-and-college-graduate-wants-to-use-science-to-prove-existence-of-god tag-boy-11-graduates-from-college tag-boy-11-graduates-from-florida-college tag-boy-genius-graduates-college tag-boy-genius-graduates-college-at-11 tag-maillis-genius tag-will-maillis-genius tag-william-genius tag-william-genius-kid tag-william-maillis tag-william-maillis-college-graduate tag-william-maillis-genius tag-william-maillis-parents tag-william-maillis-quote">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="341" src="https://opentheword.org/wp-content/uploads/2018/07/williammaillis-hchcmedia-youtube.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="William Maillis, 11, being interviewed by HCHC Media Credit: HCHC Media/YouTube capture" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2018/07/williammaillis-hchcmedia-youtube.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2018/07/williammaillis-hchcmedia-youtube.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2018/07/williammaillis-hchcmedia-youtube.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2018/07/williammaillis-hchcmedia-youtube.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="27802" data-permalink="https://opentheword.org/2018/07/24/11-year-old-genius-and-college-graduate-wants-to-use-science-to-prove-existence-of-god/williammaillis-hchcmedia-youtube/" data-orig-file="https://opentheword.org/wp-content/uploads/2018/07/williammaillis-hchcmedia-youtube.jpg" data-orig-size="1200,400" 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="WilliamMaillis-HCHCMedia-youtube" data-image-description="&lt;p&gt;William Maillis, 11, being interviewed by HCHC Media Credit: HCHC Media/YouTube capture&lt;/p&gt;
" data-image-caption="&lt;p&gt;William Maillis, 11, being interviewed by HCHC Media Credit: HCHC Media/YouTube capture&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2018/07/williammaillis-hchcmedia-youtube.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2018-07-24T08:09:05-06:00">July 24, 2018</time></div>

<h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2018/07/24/11-year-old-genius-and-college-graduate-wants-to-use-science-to-prove-existence-of-god/" target="_self" >11-year-old genius and college graduate wants to use science to prove existence of&nbsp;God</a></h3></div>
</div>

</li><li data-wp-key="post-template-item-30363" class="wp-block-post post-30363 post type-post status-publish format-standard has-post-thumbnail hentry category-apologetics category-main category-miracles category-podcasts category-z123 category-z130 tag-bible-dreams-and-visions tag-corneliuss-vision-acts-101-6 tag-does-god-still-speak-to-us-through-dreams-and-visions-podcast tag-dreams tag-dreams-in-the-bible tag-genesis-371-11-josephs-dream tag-god-confirms-his-word-through-signs-and-wonders tag-god-speaks-through-dreams tag-god-speaks-through-visions tag-mark-1619-20 tag-numbers-244-visions-are-waking-dreams tag-peters-vision-of-unclean-animals-acts-109-15 tag-signs tag-visions tag-visions-in-the-bible tag-what-are-visions tag-wonders">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="341" src="https://opentheword.org/wp-content/uploads/2019/01/cottonwood-vincet-parson-flickr-creative-commons-1.gif?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Cottonwood tree Credit: Vincent Parsons/Flickr/Creative Commons" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2019/01/cottonwood-vincet-parson-flickr-creative-commons-1.gif?w=1024 1024w, https://opentheword.org/wp-content/uploads/2019/01/cottonwood-vincet-parson-flickr-creative-commons-1.gif?w=500 500w, https://opentheword.org/wp-content/uploads/2019/01/cottonwood-vincet-parson-flickr-creative-commons-1.gif?w=768 768w, https://opentheword.org/wp-content/uploads/2019/01/cottonwood-vincet-parson-flickr-creative-commons-1.gif 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="30371" data-permalink="https://opentheword.org/2019/01/19/does-god-still-speak-to-us-through-dreams-and-visions-podcast/cottonwood-vincet-parson-flickr-creative-commons/" data-orig-file="https://opentheword.org/wp-content/uploads/2019/01/cottonwood-vincet-parson-flickr-creative-commons-1.gif" data-orig-size="1200,400" 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="cottonwood-vincet-parson-flickr-creative-commons" data-image-description="&lt;p&gt;Cottonwood tree Credit: Vincent Parsons/Flickr/Creative Commons&lt;/p&gt;
" data-image-caption="&lt;p&gt;Cottonwood tree Credit: Vincent Parsons/Flickr/Creative Commons&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2019/01/cottonwood-vincet-parson-flickr-creative-commons-1.gif?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2019-01-19T18:42:11-06:00">January 19, 2019</time></div>

<h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2019/01/19/does-god-still-speak-to-us-through-dreams-and-visions-podcast/" target="_self" >12 | Does God still speak to us through dreams and&nbsp;visions?</a></h3></div>
</div>

</li><li data-wp-key="post-template-item-23795" class="wp-block-post post-23795 post type-post status-publish format-standard has-post-thumbnail hentry category-apologetics category-end-times-apologetics category-global-warming category-main category-z73 tag-end-time tag-global-warming tag-iran">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="341" src="https://opentheword.org/wp-content/uploads/2017/08/ahvaz-iran-hossein-mtb-wikipedia-creativecommons.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Ahvaz, Iran Credit: HOSSEIN MTP/Wikipedia/Creative Commons" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2017/08/ahvaz-iran-hossein-mtb-wikipedia-creativecommons.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2017/08/ahvaz-iran-hossein-mtb-wikipedia-creativecommons.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2017/08/ahvaz-iran-hossein-mtb-wikipedia-creativecommons.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2017/08/ahvaz-iran-hossein-mtb-wikipedia-creativecommons.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="23797" data-permalink="https://opentheword.org/2017/08/30/129f-53-7c-setting-a-heat-record-in-iran/ahvaz-iran-hossein-mtb-wikipedia-creativecommons/" data-orig-file="https://opentheword.org/wp-content/uploads/2017/08/ahvaz-iran-hossein-mtb-wikipedia-creativecommons.jpg" data-orig-size="1200,400" 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="Ahvaz-Iran-HOSSEIN-MTB-Wikipedia-CreativeCommons" data-image-description="&lt;p&gt;Ahvaz, Iran Credit: HOSSEIN MTP/Wikipedia/Creative Commons&lt;/p&gt;
" data-image-caption="&lt;p&gt;Ahvaz, Iran Credit: HOSSEIN MTP/Wikipedia/Creative Commons&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2017/08/ahvaz-iran-hossein-mtb-wikipedia-creativecommons.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2017-08-30T07:51:04-06:00">August 30, 2017</time></div>

<h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2017/08/30/129f-53-7c-setting-a-heat-record-in-iran/" target="_self" >129F (53.7C) &#8212; setting a heat record in&nbsp;Iran</a></h3></div>
</div>

</li><li data-wp-key="post-template-item-102185" class="wp-block-post post-102185 post type-post status-publish format-standard has-post-thumbnail hentry category-apologetics category-main category-miracles category-podcasts category-studies tag-anxiety tag-bible tag-dealing-with-worry tag-divine-healing tag-dont-worry tag-dont-worry-about-tomorrow-let-tomorrow-take-care-of-itself tag-faith tag-healing-of-the-blind-man-at-bethsaida tag-jesus tag-jesus-heals-the-blindman tag-mark-8-22-25-commentary tag-mark-822-26-explained tag-mark-822-26-healing-of-blind-man tag-mark-823-24-failed-healing tag-matthew-634-tomorrow-will-take-care-of-itself tag-men-walking-as-trees tag-worry tag-worry-about-the-future tag-worry-affects-us-mentally">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2025/05/hour-glass-time-credit-aron-visuals-unsplash.com-bxoxnq26b7o-unsplash.jpg.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Hour glass sitting in sand at night" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2025/05/hour-glass-time-credit-aron-visuals-unsplash.com-bxoxnq26b7o-unsplash.jpg.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2025/05/hour-glass-time-credit-aron-visuals-unsplash.com-bxoxnq26b7o-unsplash.jpg.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2025/05/hour-glass-time-credit-aron-visuals-unsplash.com-bxoxnq26b7o-unsplash.jpg.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2025/05/hour-glass-time-credit-aron-visuals-unsplash.com-bxoxnq26b7o-unsplash.jpg.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="102190" data-permalink="https://opentheword.org/2025/05/19/139-it-took-2000-years-but-we-finally-understand-christs-advice-on-worry-and-a-strange-miracle/hour-glass-time-credit-aron-visuals-unsplash-com-bxoxnq26b7o-unsplash-jpg/" data-orig-file="https://opentheword.org/wp-content/uploads/2025/05/hour-glass-time-credit-aron-visuals-unsplash.com-bxoxnq26b7o-unsplash.jpg.jpg" data-orig-size="1200,800" 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="Hour Glass time Credit Aron Visuals, unsplash.com-unsplash.jpg" data-image-description="&lt;p&gt;Hour glass sitting in sand at night&lt;/p&gt;
" data-image-caption="&lt;p&gt; Credit: Aron Visuals, unsplash.com&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2025/05/hour-glass-time-credit-aron-visuals-unsplash.com-bxoxnq26b7o-unsplash.jpg.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2025-05-19T09:26:08-06:00">May 19, 2025</time></div>

<h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2025/05/19/139-it-took-2000-years-but-we-finally-understand-christs-advice-on-worry-and-a-strange-miracle/" target="_self" >139 | It took 2,000 years but we finally understand Christ’s advice on worry and a strange&nbsp;miracle</a></h3></div>
</div>

</li></ul></div>
</div>



<div style="height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))" aria-hidden="true" class="wp-block-spacer"></div>
</div>
</div>



<div class="wp-block-column wp-embed-aspect-21-9 wp-has-aspect-ratio is-layout-flow wp-block-column-is-layout-flow">
<h2 class="wp-block-heading">LISTEN TO OUR PODCASTS (SEARCH “OPENTHEWORD”):</h2>



<ul class="wp-block-list">
<li><a href="https://open.spotify.com/show/46hi2YP9umdZIqtteftI97">Spotify</a></li>



<li><a href="https://podcasts.apple.com/podcast/opentheword-org/id1476987295">Apple Podcasts</a></li>



<li><a href="https://www.iheart.com/podcast/269-openthewordorg-48985978/">IHeartRadio</a></li>



<li><a href="https://www.listennotes.com/podcasts/openthewordorg-dean-smith-I3BqtEeT9MK/">Listen Notes</a></li>



<li><a href="https://tunein.com/podcasts/Religion--Spirituality-Podcas/Opentheword-p1258278/?topicId=134463287">TuneIn</a></li>



<li><a href="https://www.podchaser.com/podcasts/openthewordorg-902461">Podchaser</a></li>



<li><a href="https://www.youtube.com/watch?v=Er8PgmY6iiI&amp;list=PL8iirODYEQ9rA3C0UrX4gD5R2jjHgxQaa">YouTube Music Podcasts</a> (audio)</li>



<li><a href="https://music.amazon.com/podcasts/0d51f132-c07a-4ac1-ad43-759e6b2cc561">Amazon podcasts</a></li>
</ul>



<figure class="wp-block-audio"><audio controls src="https://opentheword.org/wp-content/uploads/2026/06/164-ver-3-kardashian-family-saved-by-175-year-old-prophecy.mp3"></audio><figcaption class="wp-element-caption">164 | Was the Kardashian family saved by a 175-year-old prophecy?</figcaption></figure>



<figure class="wp-block-audio"><audio controls src="https://opentheword.org/wp-content/uploads/2020/06/52-you-have-just-90-seconds-1.mp3"></audio><figcaption class="wp-element-caption">52 | You have just 90 seconds</figcaption></figure>



<figure class="wp-block-audio"><audio controls src="https://opentheword.org/wp-content/uploads/2020/05/51-the-butterfly-effect.mp3"></audio><figcaption class="wp-element-caption">51 | The Butterfly Effect</figcaption></figure>



<figure class="wp-block-audio"><audio controls src="https://opentheword.org/wp-content/uploads/2020/05/50-christians-in-the-age-of-civil-disobedience.mp3"></audio><figcaption class="wp-element-caption">50 | Christians in the age of civil disobedience?</figcaption></figure>



<figure class="wp-block-audio"><audio controls src="https://opentheword.org/wp-content/uploads/2020/04/49-_-thinking-old.mp3"></audio><figcaption class="wp-element-caption">49 | Thinking old?</figcaption></figure>



<figure class="wp-block-audio"><audio controls src="https://opentheword.org/wp-content/uploads/2020/04/48-_-word-of-knowlege.mp3"></audio><figcaption class="wp-element-caption">48 | Did a “strange” word of knowledge help win the most important hockey game of the century?</figcaption></figure>



<figure class="wp-block-audio"><audio controls src="https://opentheword.org/wp-content/uploads/2020/04/47-_-two-crossesrevised2023.mp3"></audio><figcaption class="wp-element-caption">47 | How many crosses did Jesus actually die on?</figcaption></figure>



<figure class="wp-block-audio"><audio controls src="https://opentheword.org/wp-content/uploads/2020/04/46-_-three-events-that-may-connect-covid-19-to-the-end-times_-1.mp3"></audio><figcaption class="wp-element-caption">46 | Three events that may connect COVID-19 to the end times?</figcaption></figure>



<figure class="wp-block-audio"><audio controls src="https://opentheword.org/wp-content/uploads/2020/04/45-nudge-from-above.mp3"></audio><figcaption class="wp-element-caption">45 | The Nudge from Above</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-spotify wp-block-embed-spotify wp-embed-aspect-21-9 wp-has-aspect-ratio" style="margin-right:var(--wp--preset--spacing--30);margin-left:var(--wp--preset--spacing--30)"><div class="wp-block-embed__wrapper">
<div class="embed-spotify"><iframe title="Spotify Embed: 44 | What is your default setting?" style="border-radius: 12px" width="100%" height="152" frameborder="0" allowfullscreen allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy" src="https://open.spotify.com/embed/episode/0psEqKrlRu6jTNuas8t51N?si=JLolTEfUTQiMN1TUu-9WpA&amp;utm_source=oembed"></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-spotify wp-block-embed-spotify wp-embed-aspect-21-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-spotify"><iframe title="Spotify Embed: 43 | I blame Gehazi for grave soaking!" style="border-radius: 12px" width="100%" height="152" frameborder="0" allowfullscreen allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy" src="https://open.spotify.com/embed/episode/4Hcl97NXitMDt0oKVrEFS2?si=7JWmgwKgSm2uKlcpUB_xiA&amp;utm_source=oembed"></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-spotify wp-block-embed-spotify wp-embed-aspect-21-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-spotify"><iframe title="Spotify Embed: 42 | The first recorded case of whiplash in the Bible" style="border-radius: 12px" width="100%" height="152" frameborder="0" allowfullscreen allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy" src="https://open.spotify.com/embed/episode/799Yd59fKkQUbRmbz4pfti?si=6H-RXQyzR4uhGuwcQNbuoQ&amp;utm_source=oembed"></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-spotify wp-block-embed-spotify wp-embed-aspect-21-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-spotify"><iframe title="Spotify Embed: 41 | Did God bind the strongman over Argentina?" style="border-radius: 12px" width="100%" height="152" frameborder="0" allowfullscreen allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy" src="https://open.spotify.com/embed/episode/59EyXajPlhzHyC3UyRpA84?si=v-ypM2fsR0KhASNB6MnXeA&amp;utm_source=oembed"></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-9-16 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Why Jesus Preached to imprisoned Spirits? #bible #jesus #opentheword #jesuschrist #noah" width="422" height="750" src="https://www.youtube.com/embed/mUhy8GMnuV0?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>
</div>



<div class="wp-block-column wp-embed-aspect-21-9 wp-has-aspect-ratio is-layout-flow wp-block-column-is-layout-flow">
<div class="wp-block-group alignfull has-global-padding is-content-justification-center is-layout-constrained wp-container-core-group-is-layout-96598206 wp-block-group-is-layout-constrained" style="margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))">
<div style="height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group alignwide has-global-padding is-layout-constrained wp-block-group-is-layout-constrained">
<h2 class="wp-block-heading alignwide has-large-font-size">Divine Healing</h2>



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



<div data-wp-context="{}" data-wp-interactive="core/query" data-wp-key="9" data-wp-router-region="query-9" class="wp-block-query alignwide is-layout-flow wp-block-query-is-layout-flow"><ul class="columns-2 wp-block-post-template is-layout-grid wp-container-core-post-template-is-layout-825c4771 wp-block-post-template-is-layout-grid"><li data-wp-key="post-template-item-112236" class="wp-block-post post-112236 post type-post status-publish format-standard has-post-thumbnail hentry category-main category-miracles tag-bible tag-christianity tag-divine-healing tag-faith tag-god tag-healed-during-water-baptism tag-healed-of-blindness tag-healed-of-ms tag-james-drain tag-jesus tag-jesus-heals tag-water-baptism">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="512" src="https://opentheword.org/wp-content/uploads/2026/05/james-drain-full-opentheword.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Photo of James Drain being healed during his water baptism" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/05/james-drain-full-opentheword.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/05/james-drain-full-opentheword.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/05/james-drain-full-opentheword.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/05/james-drain-full-opentheword.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="112247" data-permalink="https://opentheword.org/2026/05/27/man-healed-of-blindness-and-ms-during-water-baptism/james-drain-full-opentheword/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/05/james-drain-full-opentheword.jpg" data-orig-size="1200,600" 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;James Drain Full Opentheword&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Photos of James Drain being healed during his water baptism Credit Grace Apostolic Church, Instgram" data-image-description="&lt;p&gt;Photo of James Drain being healed during his water baptism&lt;/p&gt;
" data-image-caption="&lt;p&gt;Photos of James Drain being healed during his water baptism Credit Grace Apostolic Church, Instgram&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2026/05/james-drain-full-opentheword.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/05/27/man-healed-of-blindness-and-ms-during-water-baptism/" target="_self" >Man Healed of Blindness and MS During Water&nbsp;Baptism</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-05-27T11:54:34-06:00">May 27, 2026</time></div></div>
</div>

</li><li data-wp-key="post-template-item-111757" class="wp-block-post post-111757 post type-post status-publish format-standard has-post-thumbnail hentry category-main category-miracles category-podcasts tag-bible-podcast tag-biblical-teaching-podcast tag-cancer tag-cancer-healing tag-christian-podcast tag-christian-podcast-topics tag-christian-worldview-podcast tag-christianity-podcast tag-divine-healing tag-divine-healing-prayer tag-faith tag-faith-based-podcast tag-gift-of-healing tag-god-heals-bible-verses tag-god-heals-verse tag-healed-of-cancer tag-healing tag-isaiah-535-by-his-stripes-we-are-healing tag-jesus tag-jesus-heals tag-miracle tag-miraculous-healing tag-miraculous-healing-confirmed tag-northern-ireland tag-sharyn-mackay">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="512" src="https://opentheword.org/wp-content/uploads/2026/05/newcastle-county-down-northern-ireland-credit-eric-jones-wikipedia-cc-by-sa-2.0.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Newcastle, County Down, Northern Ireland" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/05/newcastle-county-down-northern-ireland-credit-eric-jones-wikipedia-cc-by-sa-2.0.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/05/newcastle-county-down-northern-ireland-credit-eric-jones-wikipedia-cc-by-sa-2.0.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/05/newcastle-county-down-northern-ireland-credit-eric-jones-wikipedia-cc-by-sa-2.0.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/05/newcastle-county-down-northern-ireland-credit-eric-jones-wikipedia-cc-by-sa-2.0.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="111765" data-permalink="https://opentheword.org/2026/05/08/162-miraculous-cancer-healing-in-northern-ireland/newcastle-county-down-northern-ireland-credit-eric-jones-wikipedia-cc-by-sa-2-0/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/05/newcastle-county-down-northern-ireland-credit-eric-jones-wikipedia-cc-by-sa-2.0.jpg" data-orig-size="1200,600" 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;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Newcastle, County Down, Northern Ireland Credit Eric Jones, Wikipedia, CC BY-SA 2.0" data-image-description="&lt;p&gt;Newcastle, County Down, Northern Ireland &lt;/p&gt;
" data-image-caption="&lt;p&gt;Newcastle, County Down, Northern Ireland Credit: Eric Jones, Wikipedia, CC BY-SA 2.0&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2026/05/newcastle-county-down-northern-ireland-credit-eric-jones-wikipedia-cc-by-sa-2.0.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/05/08/162-miraculous-cancer-healing-in-northern-ireland/" target="_self" >162 | Miraculous Cancer Healing in Northern&nbsp;Ireland</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-05-08T14:29:48-06:00">May 8, 2026</time></div></div>
</div>

</li><li data-wp-key="post-template-item-111361" class="wp-block-post post-111361 post type-post status-publish format-standard has-post-thumbnail hentry category-main category-miracles category-studies tag-answers-to-prayer tag-bible tag-christianity tag-divine-healing tag-empowered-by-the-holy-spirit tag-faith tag-god tag-holy-spirit tag-holy-spirit-and-prayer tag-holy-spirit-power tag-jesus tag-poll tag-power tag-spiritual-gift tag-spiritual-gifts">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="111408" data-permalink="https://opentheword.org/2026/04/27/the-rise-of-everyday-miracles-what-the-polls-reveal/group-of-average-americans-nurse-construction-worker-chef-fir/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg" data-orig-size="1200,800" 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;Group of Average Americans nurse, construction worker, chef, fir&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Group of Average Americans nurse, construction worker, chef, fir" data-image-description="" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/04/27/the-rise-of-everyday-miracles-what-the-polls-reveal/" target="_self" >The Rise of Everyday Miracles: What the Polls&nbsp;Reveal</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-04-27T11:57:15-06:00">April 27, 2026</time></div></div>
</div>

</li><li data-wp-key="post-template-item-110868" class="wp-block-post post-110868 post type-post status-publish format-standard has-post-thumbnail hentry category-main category-miracles category-teaching tag-bible tag-christianity tag-divine-healing tag-faith tag-healing tag-healing-of-centurions-servant tag-how-jesus-healed-the-sick tag-jesus tag-jesus-healing tag-jesus-healing-ministry tag-john-1138-44-lazarus-raised-from-the-dead tag-laying-on-of-hands tag-long-distance-healings tag-matthew-85-13">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="512" src="https://opentheword.org/wp-content/uploads/2026/04/jesus-healing-the-centurions-servant-by-thomas-charles-barfield-1858-1942-wikipedia-public-domain.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Painting of Jesus healing the Centurion’s servant" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/04/jesus-healing-the-centurions-servant-by-thomas-charles-barfield-1858-1942-wikipedia-public-domain.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/04/jesus-healing-the-centurions-servant-by-thomas-charles-barfield-1858-1942-wikipedia-public-domain.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/04/jesus-healing-the-centurions-servant-by-thomas-charles-barfield-1858-1942-wikipedia-public-domain.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/04/jesus-healing-the-centurions-servant-by-thomas-charles-barfield-1858-1942-wikipedia-public-domain.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="110878" data-permalink="https://opentheword.org/2026/04/08/the-three-times-jesus-performed-long-distance-healings/jesus-healing-the-centurions-servant-by-thomas-charles-barfield-1858-1942-wikipedia-public-domain/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/04/jesus-healing-the-centurions-servant-by-thomas-charles-barfield-1858-1942-wikipedia-public-domain.jpg" data-orig-size="1200,600" 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;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Jesus Healing the Centurion&amp;#8217;s Servant by Thomas Charles Barfield (1858-1942), Wikipedia, Public Domain" data-image-description="&lt;p&gt;Painting of Jesus healing the Centurion’s servant&lt;/p&gt;
" data-image-caption="&lt;p&gt;Jesus Healing the Centurion&amp;#8217;s Servant by Thomas Charles Barfield (1858-1942), Wikipedia, Public Domain&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2026/04/jesus-healing-the-centurions-servant-by-thomas-charles-barfield-1858-1942-wikipedia-public-domain.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/04/08/the-three-times-jesus-performed-long-distance-healings/" target="_self" >The Three Times Jesus Performed Long Distance&nbsp;Healings</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-04-08T11:35:42-06:00">April 8, 2026</time></div></div>
</div>

</li><li data-wp-key="post-template-item-110673" class="wp-block-post post-110673 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-main category-miracles tag-believing-gods-word tag-bible tag-declaring-gods-word tag-divine-healing tag-dream tag-dreams tag-ezekiel-166 tag-faith tag-god tag-gods-word tag-gods-word-is-living-and-active tag-hebrews-412-sword tag-jesus tag-miracles tag-rick-francis">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2021/06/bible-scripture-aaron-burden-unsplash.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Open Bible with pages fluttering" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2021/06/bible-scripture-aaron-burden-unsplash.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2021/06/bible-scripture-aaron-burden-unsplash.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2021/06/bible-scripture-aaron-burden-unsplash.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2021/06/bible-scripture-aaron-burden-unsplash.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="59990" data-permalink="https://opentheword.org/2021/06/18/73-how-the-worst-chapter-break-in-the-bible-impacts-your-identity-in-christ/bible-scripture-aaron-burden-unsplash/" data-orig-file="https://opentheword.org/wp-content/uploads/2021/06/bible-scripture-aaron-burden-unsplash.jpg" data-orig-size="1200,800" 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="bible-scripture-aaron-burden&amp;#8211;unsplash" data-image-description="&lt;p&gt;Open Bible with pages fluttering&lt;/p&gt;
" data-image-caption="&lt;p&gt;Credit: Aaron-Burden/unsplash.com&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2021/06/bible-scripture-aaron-burden-unsplash.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/03/30/how-a-dream-about-a-little-known-bible-verse-paved-the-way-for-healing/" target="_self" >How a Dream About a Little Known Bible Verse Paved the Way for&nbsp;Healing</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-03-30T11:11:09-06:00">March 30, 2026</time></div></div>
</div>

</li><li data-wp-key="post-template-item-110285" class="wp-block-post post-110285 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-main category-miracles tag-bible tag-christianity tag-divine-healing tag-faith tag-gift-of-healing tag-god tag-i-corinthians-12-spiritual-gifts tag-jesus tag-miracles tag-radiant-springs-church tag-spiritual-gift tag-spiritual-gifts">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2022/12/stethescope-doctor-medical-hospital-ic-12-18-2022.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="A photo of stethscope on a white background" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2022/12/stethescope-doctor-medical-hospital-ic-12-18-2022.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2022/12/stethescope-doctor-medical-hospital-ic-12-18-2022.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2022/12/stethescope-doctor-medical-hospital-ic-12-18-2022.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2022/12/stethescope-doctor-medical-hospital-ic-12-18-2022.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="79102" data-permalink="https://opentheword.org/2022/12/18/christian-doctors-sue-new-mexico-over-forced-participation-in-assisted-suicide/the-medical-stetoskop/" data-orig-file="https://opentheword.org/wp-content/uploads/2022/12/stethescope-doctor-medical-hospital-ic-12-18-2022.jpg" data-orig-size="1200,800" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 450D&quot;,&quot;caption&quot;:&quot;The medical stetoskop on a white background&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;76&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.3&quot;,&quot;title&quot;:&quot;The medical stetoskop&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="The medical stetoskop" data-image-description="" data-image-caption="&lt;p&gt;The medical stetoskop on a white background&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2022/12/stethescope-doctor-medical-hospital-ic-12-18-2022.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/03/18/when-the-holy-spirit-releases-a-gift-of-healing-through-an-ordinary-believer/" target="_self" >When the Holy Spirit Releases a Gift of Healing Through an Ordinary&nbsp;Believer</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-03-18T11:51:26-06:00">March 18, 2026</time></div></div>
</div>

</li><li data-wp-key="post-template-item-108507" class="wp-block-post post-108507 post type-post status-publish format-standard has-post-thumbnail hentry category-main category-miracles category-prayer category-studies tag-bible tag-christianity tag-divine-healing tag-divine-healing-and-faith tag-divine-healing-prayer tag-faith tag-god tag-iris-ministries tag-jesus tag-prayer tag-praying-for-the-sick tag-praying-for-the-sick-in-mozanbique tag-proximal-intercessory-prayer tag-proximal-intercessory-prayer-study tag-study-on-divine-healing">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2025/12/heidi-baker-at-christmas-in-the-babyhouse-in-the-iris-ministries-childrens-center-in-zimpeto-maputo-mozambique-credit-wunderbar7-wikipedia-cc-by-sa-3.0.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Heidi Baker at the Iris Ministries Children&#039;s Center in Zimpeto, Maputo, Mozambique" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2025/12/heidi-baker-at-christmas-in-the-babyhouse-in-the-iris-ministries-childrens-center-in-zimpeto-maputo-mozambique-credit-wunderbar7-wikipedia-cc-by-sa-3.0.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2025/12/heidi-baker-at-christmas-in-the-babyhouse-in-the-iris-ministries-childrens-center-in-zimpeto-maputo-mozambique-credit-wunderbar7-wikipedia-cc-by-sa-3.0.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2025/12/heidi-baker-at-christmas-in-the-babyhouse-in-the-iris-ministries-childrens-center-in-zimpeto-maputo-mozambique-credit-wunderbar7-wikipedia-cc-by-sa-3.0.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2025/12/heidi-baker-at-christmas-in-the-babyhouse-in-the-iris-ministries-childrens-center-in-zimpeto-maputo-mozambique-credit-wunderbar7-wikipedia-cc-by-sa-3.0.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="108513" data-permalink="https://opentheword.org/2025/12/22/scientific-study-of-healing-at-iris-ministries-shows-proximity-key-to-success-of-healing-prayer/heidi-baker-at-christmas-in-the-babyhouse-in-the-iris-ministries-childrens-center-in-zimpeto-maputo-mozambique-credit-wunderbar7-wikipedia-cc-by-sa-3-0/" data-orig-file="https://opentheword.org/wp-content/uploads/2025/12/heidi-baker-at-christmas-in-the-babyhouse-in-the-iris-ministries-childrens-center-in-zimpeto-maputo-mozambique-credit-wunderbar7-wikipedia-cc-by-sa-3.0.jpg" data-orig-size="1200,800" 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="Heidi Baker at Christmas in the babyhouse in the Iris Ministries Children&amp;#8217;s Center in Zimpeto, Maputo, Mozambique Credit Wunderbar7, Wikipedia, CC BY-SA 3.0" data-image-description="&lt;p&gt;Heidi Baker at the Iris Ministries Children&amp;#8217;s Center in Zimpeto, Maputo, Mozambique &lt;/p&gt;
" data-image-caption="&lt;p&gt;Heidi Baker at the Iris Ministries Children&amp;#8217;s Center in Zimpeto, Maputo, Mozambique Credit: Wunderbar7, Wikipedia, CC BY-SA 3.0&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2025/12/heidi-baker-at-christmas-in-the-babyhouse-in-the-iris-ministries-childrens-center-in-zimpeto-maputo-mozambique-credit-wunderbar7-wikipedia-cc-by-sa-3.0.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2025/12/22/scientific-study-of-healing-at-iris-ministries-shows-proximity-key-to-success-of-healing-prayer/" target="_self" >Scientific Study of Healing at Iris Ministries Shows Proximity Key to Success of Healing&nbsp;Prayer</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2025-12-22T10:03:07-06:00">December 22, 2025</time></div></div>
</div>

</li><li data-wp-key="post-template-item-107908" class="wp-block-post post-107908 post type-post status-publish format-standard has-post-thumbnail hentry category-archaeology category-main category-miracles tag-apologetics tag-bible tag-defending-our-faith tag-divine-healing tag-evidence-for-christ tag-faith tag-healing-from-blindness tag-healing-the-blind tag-jesus tag-julian-michaels tag-lee-strobel tag-miracles tag-miracles-signs-and-wonders tag-signs-and-miracles-confirm tag-signs-and-wonders tag-victor-davis-hanson">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2022/03/blind-blindfold-eyes-covered-ic-3-6-2022-1.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="A woman covering her eyes with her hands" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2022/03/blind-blindfold-eyes-covered-ic-3-6-2022-1.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2022/03/blind-blindfold-eyes-covered-ic-3-6-2022-1.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2022/03/blind-blindfold-eyes-covered-ic-3-6-2022-1.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2022/03/blind-blindfold-eyes-covered-ic-3-6-2022-1.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="70349" data-permalink="https://opentheword.org/2022/03/06/who-are-you-really-have-you-seen-love-is-blind/blind-blindfold-eyes-covered-ic-3-6-2022/" data-orig-file="https://opentheword.org/wp-content/uploads/2022/03/blind-blindfold-eyes-covered-ic-3-6-2022-1.jpg" data-orig-size="1200,800" 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="blind-blindfold-eyes-covered-ic-3-6-2022" data-image-description="" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2022/03/blind-blindfold-eyes-covered-ic-3-6-2022-1.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2025/11/25/the-need-for-signs-and-wonders/" target="_self" >The Need for Signs and&nbsp;Wonders</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2025-11-25T10:58:59-06:00">November 25, 2025</time></div></div>
</div>

</li><li data-wp-key="post-template-item-106211" class="wp-block-post post-106211 post type-post status-publish format-standard has-post-thumbnail hentry category-main category-miracles category-prayer tag-bible tag-brain-injury tag-divine-healing tag-divine-healing-prayer tag-faith tag-god tag-human-spirit tag-jesus tag-prayer tag-spirit">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="678" src="https://opentheword.org/wp-content/uploads/2023/01/clouds-sun-sky-ic-1-20-2023-e1757697202496.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="sun piercing through the clouds" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2023/01/clouds-sun-sky-ic-1-20-2023-e1757697202496.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2023/01/clouds-sun-sky-ic-1-20-2023-e1757697202496.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2023/01/clouds-sun-sky-ic-1-20-2023-e1757697202496.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2023/01/clouds-sun-sky-ic-1-20-2023-e1757697202496.jpg 1208w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="80162" data-permalink="https://opentheword.org/2023/01/20/increased-interest-in-spirituality-brings-opportunity-and-danger-surveys-find/deep-blue-sky/" data-orig-file="https://opentheword.org/wp-content/uploads/2023/01/clouds-sun-sky-ic-1-20-2023-e1757697202496.jpg" data-orig-size="1208,800" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;9&quot;,&quot;credit&quot;:&quot;GONCHARENKO IGOR&quot;,&quot;camera&quot;:&quot;PENTAX K-01&quot;,&quot;caption&quot;:&quot;Deep blue sky and summer sun. Nature airscape.&quot;,&quot;created_timestamp&quot;:&quot;1471693924&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;38.13&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.005&quot;,&quot;title&quot;:&quot;Deep blue sky&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="" data-image-description="" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2023/01/clouds-sun-sky-ic-1-20-2023-e1757697202496.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2025/09/12/caught-up-to-heaven-then-prayers-brought-him-back/" target="_self" >Caught Up To Heaven, then Prayers Brought Him&nbsp;Back</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2025-09-12T12:01:56-06:00">September 12, 2025</time></div></div>
</div>

</li><li data-wp-key="post-template-item-104276" class="wp-block-post post-104276 post type-post status-publish format-standard has-post-thumbnail hentry category-celebrity-news category-main category-miracles category-music category-testimony tag-divine-healing tag-forrest-frank tag-isaiah-535-by-his-scourgings-we-are-healed tag-miraculous-healing tag-miraculous-healing-confirmed">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2025/08/forrest-frank-wikipedia-jesuschristisking-youtube-capture-cc-by-3.0-1.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Forrest Frank in concert in 2025" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2025/08/forrest-frank-wikipedia-jesuschristisking-youtube-capture-cc-by-3.0-1.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2025/08/forrest-frank-wikipedia-jesuschristisking-youtube-capture-cc-by-3.0-1.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2025/08/forrest-frank-wikipedia-jesuschristisking-youtube-capture-cc-by-3.0-1.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2025/08/forrest-frank-wikipedia-jesuschristisking-youtube-capture-cc-by-3.0-1.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="104286" data-permalink="https://opentheword.org/2025/08/07/popular-christian-singer-forrest-frank-shares-testimony-of-miraculous-healing/forrest-frank-wikipedia-jesuschristisking-youtube-capture-cc-by-3-0/" data-orig-file="https://opentheword.org/wp-content/uploads/2025/08/forrest-frank-wikipedia-jesuschristisking-youtube-capture-cc-by-3.0-1.jpg" data-orig-size="1200,800" 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="Forrest Frank Wikipedia, JesusChristIsKing!, YouTube Capture, CC BY 3.0" data-image-description="&lt;p&gt;Forrest Frank in concert in 2025&lt;/p&gt;
" data-image-caption="&lt;p&gt;Forrest Frank in concert in 2025 Credit:JesusChristIsKing!, Wikipedia, YouTube Capture, CC BY 3.0 &lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2025/08/forrest-frank-wikipedia-jesuschristisking-youtube-capture-cc-by-3.0-1.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2025/08/07/popular-christian-singer-forrest-frank-shares-testimony-of-miraculous-healing/" target="_self" >Popular Christian Singer, Forrest Frank, Shares Testimony of Miraculous&nbsp;Healing</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2025-08-07T09:48:27-06:00">August 7, 2025</time></div></div>
</div>

</li><li data-wp-key="post-template-item-102797" class="wp-block-post post-102797 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-main category-miracles tag-bible tag-christianity tag-divine-healing tag-dreams tag-dreams-and-muslims tag-faith tag-holy-spirit tag-jesus tag-keith-everette-smith tag-signs-and-wonders tag-tasha-layton tag-tasha-layton-healing">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="770" src="https://opentheword.org/wp-content/uploads/2025/06/africa-sunset-in-the-serengeti-tanzania-credit-hu-chen-unsplash.com_.jpeg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Sunset in the Serengeti, Tanzania, Africa" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2025/06/africa-sunset-in-the-serengeti-tanzania-credit-hu-chen-unsplash.com_.jpeg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2025/06/africa-sunset-in-the-serengeti-tanzania-credit-hu-chen-unsplash.com_.jpeg?w=2048 2048w, https://opentheword.org/wp-content/uploads/2025/06/africa-sunset-in-the-serengeti-tanzania-credit-hu-chen-unsplash.com_.jpeg?w=500 500w, https://opentheword.org/wp-content/uploads/2025/06/africa-sunset-in-the-serengeti-tanzania-credit-hu-chen-unsplash.com_.jpeg?w=768 768w, https://opentheword.org/wp-content/uploads/2025/06/africa-sunset-in-the-serengeti-tanzania-credit-hu-chen-unsplash.com_.jpeg?w=1440 1440w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="102813" data-permalink="https://opentheword.org/2025/06/13/signs-and-wonders-in-africa/africa-sunset-in-the-serengeti-tanzania-credit-hu-chen-unsplash-com/" data-orig-file="https://opentheword.org/wp-content/uploads/2025/06/africa-sunset-in-the-serengeti-tanzania-credit-hu-chen-unsplash.com_.jpeg" data-orig-size="2400,1804" 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="Africa Sunset in the Serengeti, Tanzania Credit Hu Chen, unsplash.com" data-image-description="&lt;p&gt;Sunset in the Serengeti, Tanzania, Africa&lt;/p&gt;
" data-image-caption="&lt;p&gt;Sunset in the Serengeti, Tanzania, Africa Credit: Hu Chen, unsplash.com&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2025/06/africa-sunset-in-the-serengeti-tanzania-credit-hu-chen-unsplash.com_.jpeg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2025/06/13/signs-and-wonders-in-africa/" target="_self" >Signs and Wonders in&nbsp;Africa</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2025-06-13T11:39:06-06:00">June 13, 2025</time></div></div>
</div>

</li><li data-wp-key="post-template-item-102601" class="wp-block-post post-102601 post type-post status-publish format-standard has-post-thumbnail hentry category-celebrity-news category-holy-spirit category-main category-miracles tag-bible tag-bodie tag-bodie-kuljian tag-christianity tag-divine-healing tag-faith tag-gift-of-healing tag-holy-spirit tag-holy-spirit-and-spiritual-gifts tag-jesus tag-miracles tag-royale tag-the-voice">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2025/06/bodie-kuljian-and-wife-royale-being-interviewed-by-cbn-youtube-capture.jpg.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Bodie Kuljian and wife Royale being interviewed by CBN" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2025/06/bodie-kuljian-and-wife-royale-being-interviewed-by-cbn-youtube-capture.jpg.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2025/06/bodie-kuljian-and-wife-royale-being-interviewed-by-cbn-youtube-capture.jpg.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2025/06/bodie-kuljian-and-wife-royale-being-interviewed-by-cbn-youtube-capture.jpg.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2025/06/bodie-kuljian-and-wife-royale-being-interviewed-by-cbn-youtube-capture.jpg.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="102610" data-permalink="https://opentheword.org/2025/06/05/singer-and-his-wife-share-story-of-a-instantaneous-miraculous-healing/bodie-kuljian-and-wife-royale-being-interviewed-by-cbn-youtube-capture-jpg/" data-orig-file="https://opentheword.org/wp-content/uploads/2025/06/bodie-kuljian-and-wife-royale-being-interviewed-by-cbn-youtube-capture.jpg.jpg" data-orig-size="1200,800" 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="Bodie Kuljian and wife Royale being interviewed by CBN YouTube Capture.jpg" data-image-description="&lt;p&gt;Bodie Kuljian and wife Royale being interviewed by CBN&lt;/p&gt;
" data-image-caption="&lt;p&gt;Bodie Kuljian and wife Royale being interviewed by CBN Credit: CBN YouTube Capture&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2025/06/bodie-kuljian-and-wife-royale-being-interviewed-by-cbn-youtube-capture.jpg.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2025/06/05/singer-and-his-wife-share-story-of-a-instantaneous-miraculous-healing/" target="_self" >Singer and His Wife Share Story of a Instantaneous Miraculous&nbsp;Healing</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2025-06-05T10:44:03-06:00">June 5, 2025</time></div></div>
</div>

</li></ul></div>
</div>



<div style="height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))" aria-hidden="true" class="wp-block-spacer"></div>
</div>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-79fb870f wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">	<div
		class="wp-block-newspack-blocks-homepage-articles  wpnbha show-image image-alignbehind ts-3 is-3 is-landscape  has-text-align-left"
		style=""
		>
					<style id="newspack-blocks-inline-css" type="text/css">		.wp-block-newspack-blocks-homepage-articles article .entry-title {
			font-size: 1.2em;
		}
		.wp-block-newspack-blocks-homepage-articles .entry-meta {
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			margin-top: 0.5em;
		}
		.wp-block-newspack-blocks-homepage-articles article .entry-meta {
			font-size: 0.8em;
		}
		.wp-block-newspack-blocks-homepage-articles article .avatar {
			height: 25px;
			width: 25px;
		}
		.wp-block-newspack-blocks-homepage-articles .post-thumbnail{
			margin: 0;
			margin-bottom: 0.25em;
		}
		.wp-block-newspack-blocks-homepage-articles .post-thumbnail img {
			height: auto;
			width: 100%;
		}
		.wp-block-newspack-blocks-homepage-articles .post-thumbnail figcaption {
			margin-bottom: 0.5em;
		}
		.wp-block-newspack-blocks-homepage-articles p {
			margin: 0.5em 0;
		}

			</style>
				<div data-posts data-current-post-id="112636">
							<h2 class="article-section-title">
					<span><strong>ESPAÑOL</strong></span>
				</h2>
						
	<article data-post-id="92969"
		class="tag-apostoles-llevados-ante-el-sanedrin tag-quien-era-gamaliel-el-anciano tag-biblia tag-cristianismo tag-cristiano tag-el-apostol-pablo-fue-entrenado-bajo-gamaliel tag-el-sanedrin tag-gamaliel tag-gamaliel-el-anciano tag-hechos-223-pablo-fue-entrenado-bajo-gamaliel tag-hechos-533-42-gamaliel-defiende-a-los-apostoles tag-jesus-2 category-espanol category-espanol-17 type-post post-has-image"
				style="min-height: 0vh; padding-top: 0vh;"
				>
							<figure class="post-thumbnail">
								<a href="https://opentheword.org/2024/06/16/gamaliel-el-anciano/" rel="bookmark" tabindex="-1" aria-hidden="true">
												<img width="800" height="600" src="https://opentheword.org/wp-content/uploads/2024/02/rabban-gamliel-gamaliel-credit-e-sarajevo-haggadah-wikipedia-public-domain.jpg?w=800&amp;h=600&amp;crop=1" class="attachment-newspack-article-block-landscape-medium size-newspack-article-block-landscape-medium wp-post-image" alt="Gamaliel el Anciano" data-hero-candidate="1" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2024/02/rabban-gamliel-gamaliel-credit-e-sarajevo-haggadah-wikipedia-public-domain.jpg 800w, https://opentheword.org/wp-content/uploads/2024/02/rabban-gamliel-gamaliel-credit-e-sarajevo-haggadah-wikipedia-public-domain.jpg?w=500&amp;h=375&amp;crop=1 500w, https://opentheword.org/wp-content/uploads/2024/02/rabban-gamliel-gamaliel-credit-e-sarajevo-haggadah-wikipedia-public-domain.jpg?w=768&amp;h=576&amp;crop=1 768w" sizes="(max-width: 800px) 100vw, 800px" data-attachment-id="91300" data-permalink="https://opentheword.org/2024/02/12/gamaliel-the-elder/rabban-gamliel-gamaliel-credit-e-sarajevo-haggadah-wikipedia-public-domain/" data-orig-file="https://opentheword.org/wp-content/uploads/2024/02/rabban-gamliel-gamaliel-credit-e-sarajevo-haggadah-wikipedia-public-domain.jpg" data-orig-size="800,600" 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="Rabban Gamliel (Gamaliel) Credit e Sarajevo Haggadah, Wikipedia, Public Domain" data-image-description="&lt;p&gt;Drawing of Rabbi Galamliel&lt;/p&gt;
" data-image-caption="&lt;p&gt;Rabban Gamliel (Gamaliel) Credit: Sarajevo Haggadah, Wikipedia, Public Domain&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2024/02/rabban-gamliel-gamaliel-credit-e-sarajevo-haggadah-wikipedia-public-domain.jpg?w=500" />												</a>
				
							</figure><!-- .featured-image -->
		
		<div class="entry-wrapper">
			<h3 class="entry-title"><a href="https://opentheword.org/2024/06/16/gamaliel-el-anciano/" rel="bookmark">Gamaliel el Anciano</a></h3>						<p>Hay una interesante historia que involucra a Gamaliel el Anciano en Hechos 5.…</p>
				<div class="entry-meta">
					<time class="entry-date published" datetime="2024-06-16T08:35:00-06:00">June 16, 2024</time><time class="updated" datetime="2024-04-06T10:43:01-06:00">April 6, 2024</time>				</div><!-- .entry-meta -->
					</div><!-- .entry-wrapper -->
	</article>

		
	<article data-post-id="92936"
		class="tag-1-corintios-141-ansien-ardientemente-los-dones-espirituales tag-1-tesalonicenses-519-21-no-apagar-al-espiritu tag-1-timoteo-16-pablo-impartio-don-a-timoteo-mediante-la-imposicion-de-manos tag-biblia tag-cristianismo tag-dios tag-dones-espirituales tag-espiritu-santo tag-hebreos-61-2-imposicion-de-manos tag-hechos-751-resistir-al-espiritu-santo tag-impartacion-del-espiritu-santo tag-imposicion-de-manos tag-jesus-impuso-manos-sobre-las-personas tag-juan-738-rios-de-agua-viva tag-la-mujer-con-el-flujo-de-sangre tag-lucas-846-la-sanidad-fluyo-de-jesus tag-maya-joseph tag-no-entristezcan-al-espiritu-santo-efesios-430 tag-romanos-111-impartiendo-dones-espirituales tag-sanidad-de-jesus tag-sanidad-divina tag-ser-lleno-del-espiritu-santo category-espanol category-espanol-17 type-post post-has-image"
				style="min-height: 0vh; padding-top: 0vh;"
				>
							<figure class="post-thumbnail">
								<a href="https://opentheword.org/2024/06/15/impartacion-del-espiritu-santo-a-traves-de-la-imposicion-de-manos/" rel="bookmark" tabindex="-1" aria-hidden="true">
												<img width="600" height="450" src="https://opentheword.org/wp-content/uploads/2024/03/holy-spirit-depicted-as-a-dove-at-the-in-the-apse-of-saint-peters-basilica-c.-1660-credit-dnalor-01-wikipedia-cc-by-sa-3.0.jpg?w=600&amp;h=450&amp;crop=1" class="attachment-newspack-article-block-landscape-intermediate size-newspack-article-block-landscape-intermediate wp-post-image" alt="Impartación del Espíritu Santo a través de la imposición de&nbsp;manos" data-hero-candidate="1" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2024/03/holy-spirit-depicted-as-a-dove-at-the-in-the-apse-of-saint-peters-basilica-c.-1660-credit-dnalor-01-wikipedia-cc-by-sa-3.0.jpg?w=600&amp;h=450&amp;crop=1 600w, https://opentheword.org/wp-content/uploads/2024/03/holy-spirit-depicted-as-a-dove-at-the-in-the-apse-of-saint-peters-basilica-c.-1660-credit-dnalor-01-wikipedia-cc-by-sa-3.0.jpg?w=500&amp;h=375&amp;crop=1 500w" sizes="(max-width: 600px) 100vw, 600px" data-attachment-id="92679" data-permalink="https://opentheword.org/2024/03/29/116-laying-on-of-hands-and-imparting-the-holy-spirit/holy-spirit-depicted-as-a-dove-at-the-in-the-apse-of-saint-peters-basilica-c-1660-credit-dnalor-01-wikipedia-cc-by-sa-3-0/" data-orig-file="https://opentheword.org/wp-content/uploads/2024/03/holy-spirit-depicted-as-a-dove-at-the-in-the-apse-of-saint-peters-basilica-c.-1660-credit-dnalor-01-wikipedia-cc-by-sa-3.0.jpg" data-orig-size="800,560" 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="Holy Spirit depicted as a Dove at the in the apse of Saint Peter&amp;#8217;s Basilica, c. 1660, Credit Dnalor 01, Wikipedia, CC-BY-SA 3.0" data-image-description="&lt;p&gt;Holy Spirit depicted as a Dove at the in the apse of Saint Peter&amp;#8217;s Basilica, c. 1660,&lt;/p&gt;
" data-image-caption="&lt;p&gt;Holy Spirit depicted as a Dove at the in the apse of Saint Peter&amp;#8217;s Basilica, c. 1660, Credit: Dnalor 01, Wikipedia, CC-BY-SA 3.0&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2024/03/holy-spirit-depicted-as-a-dove-at-the-in-the-apse-of-saint-peters-basilica-c.-1660-credit-dnalor-01-wikipedia-cc-by-sa-3.0.jpg?w=500" />												</a>
				
							</figure><!-- .featured-image -->
		
		<div class="entry-wrapper">
			<h3 class="entry-title"><a href="https://opentheword.org/2024/06/15/impartacion-del-espiritu-santo-a-traves-de-la-imposicion-de-manos/" rel="bookmark">Impartación del Espíritu Santo a través de la imposición de&nbsp;manos</a></h3>						<p>En este artículo, quiero discutir la imposición de manos, la cual el escritor…</p>
				<div class="entry-meta">
					<time class="entry-date published" datetime="2024-06-15T08:55:15-06:00">June 15, 2024</time><time class="updated" datetime="2024-10-13T16:25:51-06:00">October 13, 2024</time>				</div><!-- .entry-meta -->
					</div><!-- .entry-wrapper -->
	</article>

		
	<article data-post-id="93957"
		class="tag-abraham tag-abraham-e-ismael tag-abraham-sarah-hagar-and-ismael tag-abraham-y-eliezer tag-abraham-y-hagar tag-abraham-y-sarai tag-biblia tag-como-lidiar-con-palabras-profeticas tag-dios tag-el-cumplimiento-de-las-promesas-de-dios tag-espanol tag-fe tag-genesis-2 tag-jesus tag-la-biblia tag-la-fe category-espanol category-espanol-17 category-main category-z552 type-post post-has-image"
				style="min-height: 0vh; padding-top: 0vh;"
				>
							<figure class="post-thumbnail">
								<a href="https://opentheword.org/2024/05/11/el-verso-extrano-en-hebreos-que-parece-honrar-el-fracaso/" rel="bookmark" tabindex="-1" aria-hidden="true">
												<img width="800" height="600" src="https://opentheword.org/wp-content/uploads/2021/09/abraham-jozsef-molnar-1821e280931899-wikipedia-public-domain.jpg?w=800&amp;h=600&amp;crop=1" class="attachment-newspack-article-block-landscape-medium size-newspack-article-block-landscape-medium wp-post-image" alt="El verso extraño en Hebreos que parece honrar el&nbsp;fracaso" data-hero-candidate="1" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2021/09/abraham-jozsef-molnar-1821e280931899-wikipedia-public-domain.jpg?w=800&amp;h=600&amp;crop=1 800w, https://opentheword.org/wp-content/uploads/2021/09/abraham-jozsef-molnar-1821e280931899-wikipedia-public-domain.jpg?w=500&amp;h=375&amp;crop=1 500w, https://opentheword.org/wp-content/uploads/2021/09/abraham-jozsef-molnar-1821e280931899-wikipedia-public-domain.jpg?w=768&amp;h=576&amp;crop=1 768w" sizes="(max-width: 800px) 100vw, 800px" data-attachment-id="63916" data-permalink="https://opentheword.org/2021/09/10/what-the-taliban-guidelines-on-polygamy-tell-us-about-abrahams-day/abraham-jozsef-molnar-1821-1899-wikipedia-public-domain/" data-orig-file="https://opentheword.org/wp-content/uploads/2021/09/abraham-jozsef-molnar-1821e280931899-wikipedia-public-domain.jpg" data-orig-size="1200,800" 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="Abraham József Molnár (1821–1899) &amp;#8211; wikipedia public domain" data-image-description="&lt;p&gt;Painting of the Biblical Character Abraham and his family&lt;/p&gt;
" data-image-caption="&lt;p&gt;Abraham and his family by József Molnár (1821–1899)/Wikipedia/Public Domain&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2021/09/abraham-jozsef-molnar-1821e280931899-wikipedia-public-domain.jpg?w=500" />												</a>
				
							</figure><!-- .featured-image -->
		
		<div class="entry-wrapper">
			<h3 class="entry-title"><a href="https://opentheword.org/2024/05/11/el-verso-extrano-en-hebreos-que-parece-honrar-el-fracaso/" rel="bookmark">El verso extraño en Hebreos que parece honrar el&nbsp;fracaso</a></h3>						<p>Cuando las personas reciben una palabra profética de Dios o sienten que son…</p>
				<div class="entry-meta">
					<time class="entry-date published" datetime="2024-05-11T10:24:17-06:00">May 11, 2024</time><time class="updated" datetime="2024-10-13T16:26:21-06:00">October 13, 2024</time>				</div><!-- .entry-meta -->
					</div><!-- .entry-wrapper -->
	</article>

		
	<article data-post-id="93878"
		class="tag-alimentacion-de-la-multitud tag-alimentacion-de-los-cinco-mil tag-antonio-cruz tag-biblia tag-blog tag-cinco-panes-y-dos-peces tag-espanol tag-estudio-biblico-2 tag-fe tag-jesus-2 tag-jesus tag-marcos-635-44 tag-milagros category-espanol category-espanol-17 category-main type-post post-has-image"
				style="min-height: 0vh; padding-top: 0vh;"
				>
							<figure class="post-thumbnail">
								<a href="https://opentheword.org/2024/05/08/como-un-milagro-de-lo-insignificante-se-convirtio-en-poderoso/" rel="bookmark" tabindex="-1" aria-hidden="true">
												<img width="600" height="450" src="https://opentheword.org/wp-content/uploads/2024/03/jesus-feeding-the-mulititude-credit-lambert-lombard-1540-wikipedia-public-domain.jpg?w=600&amp;h=450&amp;crop=1" class="attachment-newspack-article-block-landscape-intermediate size-newspack-article-block-landscape-intermediate wp-post-image" alt="Cómo un milagro de lo insignificante se convirtió en&nbsp;poderoso" data-hero-candidate="1" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2024/03/jesus-feeding-the-mulititude-credit-lambert-lombard-1540-wikipedia-public-domain.jpg?w=600&amp;h=450&amp;crop=1 600w, https://opentheword.org/wp-content/uploads/2024/03/jesus-feeding-the-mulititude-credit-lambert-lombard-1540-wikipedia-public-domain.jpg?w=500&amp;h=375&amp;crop=1 500w" sizes="(max-width: 600px) 100vw, 600px" data-attachment-id="91958" data-permalink="https://opentheword.org/2024/03/04/how-a-miracle-of-the-insignificant-became-powerful/jesus-feeding-the-mulititude-credit-lambert-lombard-1540-wikipedia-public-domain/" data-orig-file="https://opentheword.org/wp-content/uploads/2024/03/jesus-feeding-the-mulititude-credit-lambert-lombard-1540-wikipedia-public-domain.jpg" data-orig-size="800,533" 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="Jesus feeding the mulititude Credit Lambert Lombard, 1540, Wikipedia, Public Domain" data-image-description="&lt;p&gt;Painting of Jesus feeding the multitude by Lambert Lombard&lt;/p&gt;
" data-image-caption="&lt;p&gt;Jesus feeding the multitude Credit: Lambert Lombard, 1540, Wikipedia, Public Domain&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2024/03/jesus-feeding-the-mulititude-credit-lambert-lombard-1540-wikipedia-public-domain.jpg?w=500" />												</a>
				
							</figure><!-- .featured-image -->
		
		<div class="entry-wrapper">
			<h3 class="entry-title"><a href="https://opentheword.org/2024/05/08/como-un-milagro-de-lo-insignificante-se-convirtio-en-poderoso/" rel="bookmark">Cómo un milagro de lo insignificante se convirtió en&nbsp;poderoso</a></h3>						<p>Se trata de una historia bíblica que ha sido leída por literalmente cientos…</p>
				<div class="entry-meta">
					<time class="entry-date published" datetime="2024-05-08T07:35:39-06:00">May 8, 2024</time><time class="updated" datetime="2024-10-13T16:26:51-06:00">October 13, 2024</time>				</div><!-- .entry-meta -->
					</div><!-- .entry-wrapper -->
	</article>

		
	<article data-post-id="93782"
		class="tag-000-soldados-asirios-mueren tag-2-reyes-1935-185 tag-2-reyes-197 tag-adviento tag-asiria tag-que-mato-a-los-soldados-asirios tag-biblia tag-espanol tag-estudio-biblico tag-israel tag-jeremias-515 tag-ruach tag-rey-ezequias tag-rey-senaquerib tag-senaquerib tag-simun tag-simun-viento-venenoso tag-sin-categoria tag-viento-del-simun category-espanol category-espanol-17 type-post post-has-image"
				style="min-height: 0vh; padding-top: 0vh;"
				>
							<figure class="post-thumbnail">
								<a href="https://opentheword.org/2024/05/04/mato-un-simun-a-185000-soldados-asirios-en-2-reyes/" rel="bookmark" tabindex="-1" aria-hidden="true">
												<img width="600" height="450" src="https://opentheword.org/wp-content/uploads/2024/05/le-approach-of-the-simoom-desert-of-gizeh-by-david-roberts-louis-haghe-and-louis-haghe-1846-1849.-credit-photographer-https-wellcomeimages.org-wikipedia-cc-by-4.0-deed-.jpg?w=600&amp;h=450&amp;crop=1" class="attachment-newspack-article-block-landscape-intermediate size-newspack-article-block-landscape-intermediate wp-post-image" alt="¿Mató un &#8220;simún&#8221; a 185,000 soldados asirios en 2&nbsp;Reyes?" data-hero-candidate="1" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2024/05/le-approach-of-the-simoom-desert-of-gizeh-by-david-roberts-louis-haghe-and-louis-haghe-1846-1849.-credit-photographer-https-wellcomeimages.org-wikipedia-cc-by-4.0-deed-.jpg?w=600&amp;h=450&amp;crop=1 600w, https://opentheword.org/wp-content/uploads/2024/05/le-approach-of-the-simoom-desert-of-gizeh-by-david-roberts-louis-haghe-and-louis-haghe-1846-1849.-credit-photographer-https-wellcomeimages.org-wikipedia-cc-by-4.0-deed-.jpg?w=500&amp;h=375&amp;crop=1 500w" sizes="(max-width: 600px) 100vw, 600px" data-attachment-id="93742" data-permalink="https://opentheword.org/2024/05/03/so-what-killed-185000-assyrian-soldiers/le-approach-of-the-simoom-desert-of-gizeh-by-david-roberts-louis-haghe-and-louis-haghe-1846-1849-credit-photographer-https-wellcomeimages-org-wikipedia-cc-by-4-0-deed/" data-orig-file="https://opentheword.org/wp-content/uploads/2024/05/le-approach-of-the-simoom-desert-of-gizeh-by-david-roberts-louis-haghe-and-louis-haghe-1846-1849.-credit-photographer-https-wellcomeimages.org-wikipedia-cc-by-4.0-deed-.jpg" data-orig-size="800,542" 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="le Approach of the Simoom, Desert of Gizeh by David Roberts; Louis Haghe and Louis Haghe 1846-1849. Credit Photographer https-::wellcomeimages.org, Wikipedia, CC BY 4.0 Deed" data-image-description="&lt;p&gt;Painting of the approach of the Simoom, by David Roberts and Louis Haghe (1846-1849).&lt;/p&gt;
" data-image-caption="&lt;p&gt;Approach of the Simoom, by David Roberts and Louis Haghe (1846-1849). Credit: wellcomeimages.org, Wikipedia, CC BY 4.0 Deed&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2024/05/le-approach-of-the-simoom-desert-of-gizeh-by-david-roberts-louis-haghe-and-louis-haghe-1846-1849.-credit-photographer-https-wellcomeimages.org-wikipedia-cc-by-4.0-deed-.jpg?w=500" />												</a>
				
							</figure><!-- .featured-image -->
		
		<div class="entry-wrapper">
			<h3 class="entry-title"><a href="https://opentheword.org/2024/05/04/mato-un-simun-a-185000-soldados-asirios-en-2-reyes/" rel="bookmark">¿Mató un &#8220;simún&#8221; a 185,000 soldados asirios en 2&nbsp;Reyes?</a></h3>						<p>La Biblia nos dice que cuando murió el rey de Asiria, Sargón, su…</p>
				<div class="entry-meta">
					<time class="entry-date published" datetime="2024-05-04T11:19:38-06:00">May 4, 2024</time><time class="updated" datetime="2024-10-13T16:27:18-06:00">October 13, 2024</time>				</div><!-- .entry-meta -->
					</div><!-- .entry-wrapper -->
	</article>

		
	<article data-post-id="93682"
		class="tag-por-que-fuimos-creados-a-imagen-de-dios tag-por-que-tengo-percepciones-equivocadas-de-dios tag-biblia tag-creado-a-imagen-de-dios tag-creado-a-semejanza-de-dios tag-cristianismo tag-dios tag-el-contenido-especifico-relevante-para-esta-solicitud-es-el-siguiente tag-espanol tag-fe tag-genesis-126-creado-a-imagen-de-dios tag-genesis-126-imagen-y-semejanza-de-dios tag-honrar-a-tu-madre-y-a-tu-padre tag-imagen-de-dios tag-impacto-del-pecado tag-jesus tag-maldiciones-generacionales tag-percepciones-equivocadas-de-dios tag-perdonar tag-perdonar-a-los-padres tag-perdonar-a-nuestros-padres tag-perdonar-a-otros tag-perdonar-a-tu-padre tag-si-es-necesario tag-jesushttps-opentheword-org-tag-jesus tag-los-padres-afectan-nuestra-percepcion-de-dioshttps-opentheword-org-tag-parents-affect-our-perception-of-god tag-pecadohttps-opentheword-org-tag-sin category-espanol-17 category-z549 type-post post-has-image"
				style="min-height: 0vh; padding-top: 0vh;"
				>
							<figure class="post-thumbnail">
								<a href="https://opentheword.org/2024/05/01/es-hora-de-perdonar-a-tus-padres/" rel="bookmark" tabindex="-1" aria-hidden="true">
												<img width="600" height="450" src="https://opentheword.org/wp-content/uploads/2024/05/latin-american-woman-ic-5-1-2024.jpg?w=600&amp;h=450&amp;crop=1" class="attachment-newspack-article-block-landscape-intermediate size-newspack-article-block-landscape-intermediate wp-post-image" alt="¿Es hora de perdonar a tus&nbsp;padres?" data-hero-candidate="1" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2024/05/latin-american-woman-ic-5-1-2024.jpg?w=600&amp;h=450&amp;crop=1 600w, https://opentheword.org/wp-content/uploads/2024/05/latin-american-woman-ic-5-1-2024.jpg?w=500&amp;h=375&amp;crop=1 500w" sizes="(max-width: 600px) 100vw, 600px" data-attachment-id="93691" data-permalink="https://opentheword.org/2024/05/01/es-hora-de-perdonar-a-tus-padres/latin-american-woman-ic-5-1-2024/" data-orig-file="https://opentheword.org/wp-content/uploads/2024/05/latin-american-woman-ic-5-1-2024.jpg" data-orig-size="800,533" 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="Latin American woman ic-5-1-2024" data-image-description="&lt;p&gt;Latin American woman&lt;/p&gt;
" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2024/05/latin-american-woman-ic-5-1-2024.jpg?w=500" />												</a>
				
							</figure><!-- .featured-image -->
		
		<div class="entry-wrapper">
			<h3 class="entry-title"><a href="https://opentheword.org/2024/05/01/es-hora-de-perdonar-a-tus-padres/" rel="bookmark">¿Es hora de perdonar a tus&nbsp;padres?</a></h3>						<p>En este artículo, estaré discutiendo el importante tema de perdonar a nuestros padres.…</p>
				<div class="entry-meta">
					<time class="entry-date published" datetime="2024-05-01T08:48:25-06:00">May 1, 2024</time><time class="updated" datetime="2024-05-15T09:07:55-06:00">May 15, 2024</time>				</div><!-- .entry-meta -->
					</div><!-- .entry-wrapper -->
	</article>

		
	<article data-post-id="93546"
		class="tag-biblia tag-colosenses-215-desarmo-a-los-gobernantes-y-autoridades tag-demoniacas tag-deuteronomio-1811-espiritus-familiares tag-dios tag-espanol tag-espiritus-familiares tag-espiritus-sabios tag-fortalezas tag-fuertes-demoniacas tag-guerra-espiritual-2 tag-jesus tag-la-busqueda-de-la-liberacion-de-fuertes-demoniacas tag-levitico-1931 tag-maldiciones-generacionales tag-satanas category-espanol category-espanol-17 type-post post-has-image"
				style="min-height: 0vh; padding-top: 0vh;"
				>
							<figure class="post-thumbnail">
								<a href="https://opentheword.org/2024/04/27/maldiciones-generacionales-7-rompiendo-fortalezas-demoniacas/" rel="bookmark" tabindex="-1" aria-hidden="true">
												<img width="400" height="300" src="https://opentheword.org/wp-content/uploads/2016/06/jesus-corcovadomtn-wikipedia-dabidy.jpg?w=400&amp;h=300&amp;crop=1" class="attachment-newspack-article-block-landscape-small size-newspack-article-block-landscape-small wp-post-image" alt="Maldiciones Generacionales #7: Rompiendo Fortalezas&nbsp;Demoníacas" data-hero-candidate="1" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2016/06/jesus-corcovadomtn-wikipedia-dabidy.jpg?w=400&amp;h=300&amp;crop=1 400w, https://opentheword.org/wp-content/uploads/2016/06/jesus-corcovadomtn-wikipedia-dabidy.jpg?w=500&amp;h=375&amp;crop=1 500w" sizes="(max-width: 400px) 100vw, 400px" data-attachment-id="18068" data-permalink="https://opentheword.org/2016/06/05/generational-curses-part-7-breaking-the-demonic-stronghold/jesus-corcovadomtn-wikipedia-dabidy/" data-orig-file="https://opentheword.org/wp-content/uploads/2016/06/jesus-corcovadomtn-wikipedia-dabidy.jpg" data-orig-size="1200,400" 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="jesus-CorcovadoMtn-Wikipedia-dabidy" data-image-description="&lt;p&gt;Jesus the Name above all names  Photo: Jesus on Corcovado &lt;/p&gt;
" data-image-caption="&lt;p&gt;Jesus the Name above all names  Photo: Jesus on Corcovado Mountain overlookin Rio de Janeiro, Brazil&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2016/06/jesus-corcovadomtn-wikipedia-dabidy.jpg?w=500" />												</a>
				
							</figure><!-- .featured-image -->
		
		<div class="entry-wrapper">
			<h3 class="entry-title"><a href="https://opentheword.org/2024/04/27/maldiciones-generacionales-7-rompiendo-fortalezas-demoniacas/" rel="bookmark">Maldiciones Generacionales #7: Rompiendo Fortalezas&nbsp;Demoníacas</a></h3>						<p>Este es el último artículo de mi serie sobre Maldiciones Generacionales. Hemos estado…</p>
				<div class="entry-meta">
					<time class="entry-date published updated" datetime="2024-04-27T09:26:33-06:00">April 27, 2024</time>				</div><!-- .entry-meta -->
					</div><!-- .entry-wrapper -->
	</article>

		
	<article data-post-id="93284"
		class="tag-apocalipsis tag-se-predijo-el-ataque-de-iran-a-israel-en-la-biblia tag-biblia tag-blog tag-delimitado-con-caracteres-israel tag-dios tag-el-contenido-especificamente-relevante-para-esta-solicitud tag-espanol tag-greg-laurie tag-iran-2 tag-iran-ataca-a-israel tag-iran-y-persia-en-los-ultimos-tiempos tag-jesus-2 tag-jesus tag-profecia tag-profecia-del-fin-de-los-tiempos tag-si-es-necesario category-espanol category-espanol-17 type-post post-has-image"
				style="min-height: 0vh; padding-top: 0vh;"
				>
							<figure class="post-thumbnail">
								<a href="https://opentheword.org/2024/04/18/el-pastor-greg-laurie-sugiere-que-el-reciente-ataque-de-iran-a-israel-fue-el-cumplimiento-de-la-profecia-biblica/" rel="bookmark" tabindex="-1" aria-hidden="true">
												<img width="600" height="450" src="https://opentheword.org/wp-content/uploads/2024/04/iranian-shahed-149-drone-used-in-attack-on-israel-credit-student-news-agency-wikipedia-cc-by-4.0.jpg?w=600&amp;h=450&amp;crop=1" class="attachment-newspack-article-block-landscape-intermediate size-newspack-article-block-landscape-intermediate wp-post-image" alt="El pastor Greg Laurie sugiere que el reciente ataque de Irán a Israel fue el cumplimiento de la profecía&nbsp;bíblica" data-hero-candidate="1" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2024/04/iranian-shahed-149-drone-used-in-attack-on-israel-credit-student-news-agency-wikipedia-cc-by-4.0.jpg?w=600&amp;h=450&amp;crop=1 600w, https://opentheword.org/wp-content/uploads/2024/04/iranian-shahed-149-drone-used-in-attack-on-israel-credit-student-news-agency-wikipedia-cc-by-4.0.jpg?w=500&amp;h=375&amp;crop=1 500w" sizes="(max-width: 600px) 100vw, 600px" data-attachment-id="93272" data-permalink="https://opentheword.org/2024/04/18/greg-laurie-suggests-irans-recent-attack-on-israel-was-a-fulfillment-of-bible-prophecy/iranian-shahed-149-drone-used-in-attack-on-israel-credit-student-news-agency-wikipedia-cc-by-4-0/" data-orig-file="https://opentheword.org/wp-content/uploads/2024/04/iranian-shahed-149-drone-used-in-attack-on-israel-credit-student-news-agency-wikipedia-cc-by-4.0.jpg" data-orig-size="800,534" 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="Iranian Shahed 149 drone used in attack on Israel Credit Student News Agency, Wikipedia, CC BY 4.0" data-image-description="&lt;p&gt;Iranian Shahed 149 drone&lt;/p&gt;
" data-image-caption="&lt;p&gt;Iranian Shahed 149 drone, the type used to attack Israel on April 13, 2024. Credit: Student News Agency, Wikipedia, CC BY 4.0&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2024/04/iranian-shahed-149-drone-used-in-attack-on-israel-credit-student-news-agency-wikipedia-cc-by-4.0.jpg?w=500" />												</a>
				
							</figure><!-- .featured-image -->
		
		<div class="entry-wrapper">
			<h3 class="entry-title"><a href="https://opentheword.org/2024/04/18/el-pastor-greg-laurie-sugiere-que-el-reciente-ataque-de-iran-a-israel-fue-el-cumplimiento-de-la-profecia-biblica/" rel="bookmark">El pastor Greg Laurie sugiere que el reciente ataque de Irán a Israel fue el cumplimiento de la profecía&nbsp;bíblica</a></h3>						<p>No hay duda de que las cosas se están calentando en Medio Oriente,…</p>
				<div class="entry-meta">
					<time class="entry-date published" datetime="2024-04-18T08:55:07-06:00">April 18, 2024</time><time class="updated" datetime="2024-10-13T16:28:52-06:00">October 13, 2024</time>				</div><!-- .entry-meta -->
					</div><!-- .entry-wrapper -->
	</article>

				</div>
		
	</div>
	</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<div class="wp-block-group alignfull has-global-padding is-content-justification-center is-layout-constrained wp-container-core-group-is-layout-96598206 wp-block-group-is-layout-constrained" style="margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))">
<div style="height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group alignwide has-global-padding is-layout-constrained wp-block-group-is-layout-constrained">
<h2 class="wp-block-heading alignwide has-large-font-size">The Gift of Tongues</h2>



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



<div data-wp-context="{}" data-wp-interactive="core/query" data-wp-key="9" data-wp-router-region="query-9" class="wp-block-query alignwide is-layout-flow wp-block-query-is-layout-flow"><ul class="columns-3 wp-block-post-template is-layout-grid wp-container-core-post-template-is-layout-84506733 wp-block-post-template-is-layout-grid"><li data-wp-key="post-template-item-16373" class="wp-block-post post-16373 post type-post status-publish format-standard has-post-thumbnail hentry category-bible category-holy-spirit category-main category-teaching category-z43 tag-gift-of-tongues tag-holy-spirit">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="299" src="https://opentheword.org/wp-content/uploads/2016/01/pentecostal-campmeetingrichard-masoner-cycleliciouscolorado-white-space-conflict.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Pentecostal camp meeting in Colorado. Photo: Masonerecycleicious/Flickr/Creative Commons" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2016/01/pentecostal-campmeetingrichard-masoner-cycleliciouscolorado-white-space-conflict.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2016/01/pentecostal-campmeetingrichard-masoner-cycleliciouscolorado-white-space-conflict.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2016/01/pentecostal-campmeetingrichard-masoner-cycleliciouscolorado-white-space-conflict.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2016/01/pentecostal-campmeetingrichard-masoner-cycleliciouscolorado-white-space-conflict.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="16393" data-permalink="https://opentheword.org/2016/01/12/why-paul-wishes-we-all-spoke-in-tongues/pentecostal-campmeetingrichard-masoner-cycleliciouscolorado-white-space-conflict/" data-orig-file="https://opentheword.org/wp-content/uploads/2016/01/pentecostal-campmeetingrichard-masoner-cycleliciouscolorado-white-space-conflict.jpg" data-orig-size="1200,350" 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="Pentecostal-campMeetingRichard-Masoner-CycleliciousColorado-(White-Space-Conflict)" data-image-description="&lt;p&gt;Pentecostal camp meeting in Colorado. Photo: Masonerecycleicious/Flickr/Creative Commons&lt;/p&gt;
" data-image-caption="&lt;p&gt;Pentecostal camp meeting in Colorado. Photo: Masonerecycleicious/Flickr/Creative Commons&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2016/01/pentecostal-campmeetingrichard-masoner-cycleliciouscolorado-white-space-conflict.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2016/01/12/why-paul-wishes-we-all-spoke-in-tongues/" target="_self" >Why Paul wishes we all spoke in&nbsp;tongues</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2016-01-12T07:56:47-06:00">January 12, 2016</time></div></div>
</div>

</li><li data-wp-key="post-template-item-75324" class="wp-block-post post-75324 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-main category-studies category-z378 tag-baptism-of-the-holy-spirit tag-filling-of-holy-spirit-gift-of-tongues tag-filling-of-the-holy-spirit tag-gift-of-tongues tag-gifts-of-the-holy-spirit tag-holy-spirit tag-infilling-of-the-holy-spirit">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2022/08/worship-church-service-hand-eduardo-soares-unsplash.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Church worship service" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2022/08/worship-church-service-hand-eduardo-soares-unsplash.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2022/08/worship-church-service-hand-eduardo-soares-unsplash.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2022/08/worship-church-service-hand-eduardo-soares-unsplash.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2022/08/worship-church-service-hand-eduardo-soares-unsplash.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="75357" data-permalink="https://opentheword.org/2022/08/15/when-is-the-last-time-you-spoke-in-tongues/worship-church-service-hand-eduardo-soares-unsplash/" data-orig-file="https://opentheword.org/wp-content/uploads/2022/08/worship-church-service-hand-eduardo-soares-unsplash.jpg" data-orig-size="1200,800" 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="worship church service hand eduardo-soares&amp;#8211;unsplash" data-image-description="&lt;p&gt;Church worship service&lt;/p&gt;
" data-image-caption="&lt;p&gt;Credit: Eduardo Soares/unsplash.com&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2022/08/worship-church-service-hand-eduardo-soares-unsplash.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2022/08/15/when-is-the-last-time-you-spoke-in-tongues/" target="_self" >When is the last time you spoke in&nbsp;tongues?</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2022-08-15T10:59:41-06:00">August 15, 2022</time></div></div>
</div>

</li><li data-wp-key="post-template-item-55490" class="wp-block-post post-55490 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-main category-miracles category-testimony category-z238 tag-gift-of-tongues tag-gifts-of-the-holy-spirit">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2021/03/hooded-fear-theif-mask-dark-ic-3-21-2021.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2021/03/hooded-fear-theif-mask-dark-ic-3-21-2021.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2021/03/hooded-fear-theif-mask-dark-ic-3-21-2021.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2021/03/hooded-fear-theif-mask-dark-ic-3-21-2021.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2021/03/hooded-fear-theif-mask-dark-ic-3-21-2021.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="55506" data-permalink="https://opentheword.org/2021/03/23/when-in-doubt-pray-in-tongues/hooded-fear-theif-mask-dark-ic-3-21-2021/" data-orig-file="https://opentheword.org/wp-content/uploads/2021/03/hooded-fear-theif-mask-dark-ic-3-21-2021.jpg" data-orig-size="1200,800" 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="hooded-fear-theif-mask-dark-ic-3-21-2021" data-image-description="" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2021/03/hooded-fear-theif-mask-dark-ic-3-21-2021.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2021/03/23/when-in-doubt-pray-in-tongues/" target="_self" >When in &#8216;doubt&#8217; pray in &#8216;tongues&#8217;</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2021-03-23T12:35:45-06:00">March 23, 2021</time></div></div>
</div>

</li><li data-wp-key="post-template-item-16376" class="wp-block-post post-16376 post type-post status-publish format-standard has-post-thumbnail hentry category-bible category-holy-spirit category-main category-news category-religious category-studies category-teaching tag-charismatic tag-gift-of-tongues tag-gift-of-tongues-bible tag-gift-of-tongues-corinthians tag-gift-of-tongues-today tag-gifts-of-the-holy-spirit tag-holy-spirit tag-speaking-in-tonges-brain-scan tag-speaking-in-tongues-in-the-bible tag-speaking-in-tongues-neuroimage tag-speaking-in-tongues-study tag-speaking-in-tongues-verse tag-tongues">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="299" src="https://opentheword.org/wp-content/uploads/2016/01/pentecostalchurch-liberia-multimediaphotography-flickr-creativecommons.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Small Pentecostal church service in Liberia. Photo: Multimedia Photography/Flickr/Creative Commons" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2016/01/pentecostalchurch-liberia-multimediaphotography-flickr-creativecommons.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2016/01/pentecostalchurch-liberia-multimediaphotography-flickr-creativecommons.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2016/01/pentecostalchurch-liberia-multimediaphotography-flickr-creativecommons.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2016/01/pentecostalchurch-liberia-multimediaphotography-flickr-creativecommons.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="16380" data-permalink="https://opentheword.org/2016/01/10/what-happens-when-you-do-a-neuroimage-scan-of-a-persons-brain-as-they-speak-in-tongues/pentecostalchurch-liberia-multimediaphotography-flickr-creativecommons/" data-orig-file="https://opentheword.org/wp-content/uploads/2016/01/pentecostalchurch-liberia-multimediaphotography-flickr-creativecommons.jpg" data-orig-size="1200,350" 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;Creative Commons&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="PentecostalChurch-Liberia-MultimediaPhotography-Flickr-CreativeCommons" data-image-description="&lt;p&gt;Small Pentecostal church service in Liberia. Photo: Multimedia Photography/Flickr/Creative Commons&lt;/p&gt;
" data-image-caption="&lt;p&gt;Small Pentecostal church service in Liberia. Photo: Multimedia Photography/Flickr/Creative Commons&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2016/01/pentecostalchurch-liberia-multimediaphotography-flickr-creativecommons.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2016/01/10/what-happens-when-you-do-a-neuroimage-scan-of-a-persons-brain-as-they-speak-in-tongues/" target="_self" >What happens when you do a neuroimage scan of a person&#8217;s brain as they speak in&nbsp;tongues?</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2016-01-10T11:50:01-06:00">January 10, 2016</time></div></div>
</div>

</li><li data-wp-key="post-template-item-109916" class="wp-block-post post-109916 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-main category-spiritual-warfare-bible tag-bible tag-christianity tag-faith tag-gift-of-tongues tag-gift-of-tongues-scripture tag-gift-of-tongues-vs-speaking-in-tongues tag-holy-spirit tag-jesus tag-kap-chatfield tag-luke-reelfs tag-spiritual-gift tag-spiritual-gifts tag-the-gift-of-tongues-in-the-bible tag-the-importance-of-the-gift-of-tongues">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Holy Spirit descends on Day of Pentecost by Anthony van Dyck" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="96856" data-permalink="https://opentheword.org/2024/10/09/the-supernatural-intercessory-ministry-of-the-holy-spirit/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain/" data-orig-file="https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg" data-orig-size="1200,800" 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="Holy Spirit descends on Day of Pentecost by Anthony van Dyck, 1618, Wikipedia, Public Domain" data-image-description="&lt;p&gt;Holy Spirit descends on Day of Pentecost by Anthony van Dyck&lt;/p&gt;
" data-image-caption="&lt;p&gt;Holy Spirit descends on Day of Pentecost by Anthony van Dyck, 1618, Wikipedia, Public Domain&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/03/02/we-need-to-be-praying-in-tongues-more/" target="_self" >We Need to be Praying in Tongues&nbsp;More</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-03-02T11:56:37-06:00">March 2, 2026</time></div></div>
</div>

</li><li data-wp-key="post-template-item-26119" class="wp-block-post post-26119 post type-post status-publish format-standard has-post-thumbnail hentry category-emotional-health category-main category-spiritual category-women category-z94 tag-breath tag-gift-of-tongues tag-holy-spirit">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="341" src="https://opentheword.org/wp-content/uploads/2018/03/wind-mussi-katz-flickr-creative-commons.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Credit: Mussi Katz/Flickr/Creative Commons" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2018/03/wind-mussi-katz-flickr-creative-commons.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2018/03/wind-mussi-katz-flickr-creative-commons.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2018/03/wind-mussi-katz-flickr-creative-commons.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2018/03/wind-mussi-katz-flickr-creative-commons.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="26121" data-permalink="https://opentheword.org/2018/03/02/the-breath-of-god-the-breath-of-life/wind-mussi-katz-flickr-creative-commons/" data-orig-file="https://opentheword.org/wp-content/uploads/2018/03/wind-mussi-katz-flickr-creative-commons.jpg" data-orig-size="1200,400" 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="wind-Mussi-Katz-Flickr-creative-commons" data-image-description="&lt;p&gt;Credit: Mussi Katz/Flickr/Creative Commons&lt;/p&gt;
" data-image-caption="&lt;p&gt;Credit: Mussi Katz/Flickr/Creative Commons&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2018/03/wind-mussi-katz-flickr-creative-commons.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2018/03/02/the-breath-of-god-the-breath-of-life/" target="_self" >The Breath of God, the Breath of&nbsp;Life</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2018-03-02T12:01:55-06:00">March 2, 2018</time></div></div>
</div>

</li></ul></div>
</div>



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



<p class="wp-block-paragraph"></p>
</div>



<div class="wp-block-group alignfull has-global-padding is-content-justification-center is-layout-constrained wp-container-core-group-is-layout-96598206 wp-block-group-is-layout-constrained" style="margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))">
<h2 class="wp-block-heading alignwide">The End Times</h2>



<div data-wp-context="{}" data-wp-interactive="core/query" data-wp-key="9" data-wp-router-region="query-9" class="wp-block-query alignwide is-layout-flow wp-block-query-is-layout-flow"><ul class="wp-block-post-template is-layout-flow wp-container-core-post-template-is-layout-33d71ff5 wp-block-post-template-is-layout-flow"><li data-wp-key="post-template-item-98876" class="wp-block-post post-98876 post type-post status-publish format-standard has-post-thumbnail hentry category-end-times-apologetics category-holy-spirit category-main category-religious tag-bible tag-christian-prophets tag-christianity tag-gift-of-prophecy tag-global-prophetic-summit tag-god tag-holy-spirit tag-jesus tag-office-of-the-prophet tag-prophecy tag-prophet">

<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-b7625615 wp-block-group-is-layout-flex" style="border-bottom-width:1px;padding-top:8px;padding-bottom:8px"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left wp-container-content-9cfa9a5a"><a href="https://opentheword.org/2025/01/05/prophecy-about-modern-prophets-are-we-doomed/" target="_self" > Prophecy about Modern Prophets: Are we&nbsp;doomed?</a></h3>

<div class="wp-block-post-date has-text-align-right"><time datetime="2025-01-05T08:26:28-06:00">January 5, 2025</time></div></div>

</li><li data-wp-key="post-template-item-85444" class="wp-block-post post-85444 post type-post status-publish format-standard has-post-thumbnail hentry category-blog category-end-times-apologetics category-media category-politics category-z463 tag-ben-shapiro tag-blog tag-censorship tag-daily-wire tag-social-media tag-social-media-censorship tag-youtube">

<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-b7625615 wp-block-group-is-layout-flex" style="border-bottom-width:1px;padding-top:8px;padding-bottom:8px"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left wp-container-content-9cfa9a5a"><a href="https://opentheword.org/2023/08/14/youtube-backtracks-on-censorship-of-ben-shapiros-video-on-dark-corporations-trying-to-censor-what-people-can-see/" target="_self" >YouTube backtracks on censorship of Ben Shapiro&#8217;s video on dark corporations trying to censor what people can&nbsp;see</a></h3>

<div class="wp-block-post-date has-text-align-right"><time datetime="2023-08-14T09:09:20-06:00">August 14, 2023</time></div></div>

</li><li data-wp-key="post-template-item-83579" class="wp-block-post post-83579 post type-post status-publish format-standard has-post-thumbnail hentry category-blog category-culture category-end-times-apologetics category-family category-politics category-studies category-z445 tag-blog tag-homicide tag-youth-homicides tag-youth-suicides">

<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-b7625615 wp-block-group-is-layout-flex" style="border-bottom-width:1px;padding-top:8px;padding-bottom:8px"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left wp-container-content-9cfa9a5a"><a href="https://opentheword.org/2023/06/15/youth-homicides-hit-20-year-high-in-us-study-reveals/" target="_self" >Youth homicides hit 20-year high in US, study&nbsp;reveals</a></h3>

<div class="wp-block-post-date has-text-align-right"><time datetime="2023-06-15T11:13:03-06:00">June 15, 2023</time></div></div>

</li><li data-wp-key="post-template-item-90318" class="wp-block-post post-90318 post type-post status-publish format-standard has-post-thumbnail hentry category-blog category-end-times-apologetics category-israel category-z512 tag-bible tag-blog tag-chabad-lubavitch tag-jesus tag-jewish-messiah tag-menachem-mendel-schneerson tag-new-york-city tag-new-york-synagogue-tunnel tag-rabbi-schneerson-is-the-jewish-messiah tag-religion tag-tunnel-beneath-synagogue">

<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-b7625615 wp-block-group-is-layout-flex" style="border-bottom-width:1px;padding-top:8px;padding-bottom:8px"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left wp-container-content-9cfa9a5a"><a href="https://opentheword.org/2024/01/10/young-jewish-men-built-a-tunnel-beneath-their-new-york-synagogue-to-pave-the-way-for-the-coming-messiah/" target="_self" >Young Jewish men built a tunnel beneath their New York synagogue to pave the way for the coming&nbsp;Messiah</a></h3>

<div class="wp-block-post-date has-text-align-right"><time datetime="2024-01-10T09:19:31-06:00">January 10, 2024</time></div></div>

</li><li data-wp-key="post-template-item-28226" class="wp-block-post post-28226 post type-post status-publish format-standard has-post-thumbnail hentry category-apologetics category-end-times-apologetics category-main category-z111 tag-apocalypse tag-bible-four-horsemen-of-apocalypse tag-black-horse tag-book-of-revelation-apocalypse tag-book-of-revelation-four-horsemen tag-book-of-revelaton tag-conquest tag-death tag-end-times-apocalypse tag-end-times-four-horsemen tag-famine tag-four-horsemen tag-four-horsemen-death-famine-war-conquest tag-four-horsemen-of-the-apocalypse tag-four-horsemen-of-the-apocalypse-names tag-pale-horse tag-red-horse tag-revelation-61-8 tag-revelation-61-8-horsemen-of-apocalypse tag-war tag-what-do-the-four-horsemen-stand-for tag-white-horse tag-who-are-the-four-horsemen tag-who-are-the-four-horsemen-of-the-apocalypse tag-who-is-the-first-horseman-of-the-apocalypse tag-yemen tag-yemen-and-the-first-horseman-of-the-apocalypse tag-yemen-civil-war">

<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-b7625615 wp-block-group-is-layout-flex" style="border-bottom-width:1px;padding-top:8px;padding-bottom:8px"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left wp-container-content-9cfa9a5a"><a href="https://opentheword.org/2018/08/26/yemen-and-the-first-horseman-of-the-apocalypse/" target="_self" >Yemen and the First Horseman of the&nbsp;Apocalypse</a></h3>

<div class="wp-block-post-date has-text-align-right"><time datetime="2018-08-26T09:15:25-06:00">August 26, 2018</time></div></div>

</li><li data-wp-key="post-template-item-78437" class="wp-block-post post-78437 post type-post status-publish format-standard has-post-thumbnail hentry category-blog category-end-times-apologetics category-z403 tag-bible-verses-about-volcanic-eruptions tag-blog tag-end-times-2 tag-end-times-apocalypse tag-mauna-loa tag-volcanic-eruption tag-volcano">

<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-b7625615 wp-block-group-is-layout-flex" style="border-bottom-width:1px;padding-top:8px;padding-bottom:8px"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left wp-container-content-9cfa9a5a"><a href="https://opentheword.org/2022/11/28/worlds-largest-active-volcano-awakens/" target="_self" >World&#8217;s largest active volcano&nbsp;awakens</a></h3>

<div class="wp-block-post-date has-text-align-right"><time datetime="2022-11-28T10:36:09-06:00">November 28, 2022</time></div></div>

</li><li data-wp-key="post-template-item-90632" class="wp-block-post post-90632 post type-post status-publish format-standard has-post-thumbnail hentry category-blog category-end-times-apologetics category-media category-politics category-z517 tag-blog tag-elite-no-longer-control-the-media tag-elite-no-longer-own-the-news tag-legacy-media tag-mainstream-media tag-media tag-world-economic-forum">

<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-b7625615 wp-block-group-is-layout-flex" style="border-bottom-width:1px;padding-top:8px;padding-bottom:8px"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left wp-container-content-9cfa9a5a"><a href="https://opentheword.org/2024/01/22/world-economic-forum-world-elite-complaining-they-no-longer-own-the-news/" target="_self" >World Economic Forum: World elite complaining they &#8216;no longer own the&nbsp;news&#8217;</a></h3>

<div class="wp-block-post-date has-text-align-right"><time datetime="2024-01-22T10:51:55-06:00">January 22, 2024</time></div></div>

</li><li data-wp-key="post-template-item-79467" class="wp-block-post post-79467 post type-post status-publish format-standard has-post-thumbnail hentry category-archaeology category-end-times-apologetics category-z411 tag-blog tag-pool-of-siloam tag-the-jewish-messiah">

<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-b7625615 wp-block-group-is-layout-flex" style="border-bottom-width:1px;padding-top:8px;padding-bottom:8px"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left wp-container-content-9cfa9a5a"><a href="https://opentheword.org/2023/01/02/will-the-opening-of-the-pool-of-siloam-to-visitors-pave-the-way-for-the-return-of-the-jewish-messiah/" target="_self" >Will the opening of the Pool of Siloam to visitors pave the way for the return of the Jewish&nbsp;Messiah?</a></h3>

<div class="wp-block-post-date has-text-align-right"><time datetime="2023-01-02T10:33:36-06:00">January 2, 2023</time></div></div>

</li><li data-wp-key="post-template-item-98756" class="wp-block-post post-98756 post type-post status-publish format-standard has-post-thumbnail hentry category-end-times-apologetics category-main category-opinion category-politics category-religious category-studies tag-bible tag-christianity tag-end-times-2 tag-faith tag-future-demographics tag-god tag-growth-of-christianity tag-how-many-christians-in-the-world tag-how-many-muslims-in-the-world tag-predicting-the-future tag-religion tag-the-future">

<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-b7625615 wp-block-group-is-layout-flex" style="border-bottom-width:1px;padding-top:8px;padding-bottom:8px"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left wp-container-content-9cfa9a5a"><a href="https://opentheword.org/2024/12/29/will-religion-exist-in-the-future-are-we-doomed/" target="_self" >Will religion exist in the future? Are we&nbsp;doomed?</a></h3>

<div class="wp-block-post-date has-text-align-right"><time datetime="2024-12-29T09:48:26-06:00">December 29, 2024</time></div></div>

</li><li data-wp-key="post-template-item-110140" class="wp-block-post post-110140 post type-post status-publish format-standard has-post-thumbnail hentry category-end-times-apologetics category-islam category-israel category-main tag-bible tag-easter-sunday-april-5-2026 tag-god tag-islam tag-israel tag-jerusalem tag-jesus tag-orthodox-judaism tag-paschal-lamb tag-passover tag-passover-2026 tag-temple-mount">

<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-b7625615 wp-block-group-is-layout-flex" style="border-bottom-width:1px;padding-top:8px;padding-bottom:8px"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left wp-container-content-9cfa9a5a"><a href="https://opentheword.org/2026/03/11/will-orthodox-jews-attempt-to-sacrifice-a-lamb-on-the-temple-mount-this-passover/" target="_self" >Will Orthodox Jews Attempt to Sacrifice a Lamb on the Temple Mount this&nbsp;Passover?</a></h3>

<div class="wp-block-post-date has-text-align-right"><time datetime="2026-03-11T13:25:49-06:00">March 11, 2026</time></div></div>

</li><li data-wp-key="post-template-item-4865" class="wp-block-post post-4865 post type-post status-publish format-standard has-post-thumbnail hentry category-apologetics category-end-times-apologetics category-news category-politics category-z91 tag-end-times tag-global-warming tag-ice-age">

<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-b7625615 wp-block-group-is-layout-flex" style="border-bottom-width:1px;padding-top:8px;padding-bottom:8px"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left wp-container-content-9cfa9a5a"><a href="https://opentheword.org/2014/02/13/will-north-americas-great-lakes-completely-freeze-over-this-year/" target="_self" >Will North America&#8217;s Great Lakes completely freeze over this&nbsp;year?</a></h3>

<div class="wp-block-post-date has-text-align-right"><time datetime="2014-02-13T07:07:37-06:00">February 13, 2014</time></div></div>

</li><li data-wp-key="post-template-item-91056" class="wp-block-post post-91056 post type-post status-publish format-standard has-post-thumbnail hentry category-end-times-apologetics category-islam category-israel category-main category-z522 tag-apocalypse tag-bible tag-bible-damascus-destruction tag-damascus-syria tag-end-times-2 tag-isaiah tag-isaiah-171-3 tag-israel tag-jesus tag-nuclear-war-in-the-end-times tag-prophecy tag-syria tag-the-destruction-of-damascus">

<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-b7625615 wp-block-group-is-layout-flex" style="border-bottom-width:1px;padding-top:8px;padding-bottom:8px"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left wp-container-content-9cfa9a5a"><a href="https://opentheword.org/2024/02/05/will-isaiahs-prophecy-about-damascus-be-a-part-of-the-end-times-apocalypse/" target="_self" >Will Isaiah&#8217;s prophecy about Damascus be a part of the end times&nbsp;apocalypse?</a></h3>

<div class="wp-block-post-date has-text-align-right"><time datetime="2024-02-05T13:00:08-06:00">February 5, 2024</time></div></div>

</li></ul></div>



<div style="height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))" aria-hidden="true" class="wp-block-spacer"></div>
</div>



<div class="wp-block-group alignfull has-global-padding is-content-justification-center is-layout-constrained wp-container-core-group-is-layout-96598206 wp-block-group-is-layout-constrained" style="margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))">
<div style="height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-group alignwide has-global-padding is-layout-constrained wp-block-group-is-layout-constrained">
<h2 class="wp-block-heading alignwide has-large-font-size">Media and Social Media</h2>



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



<div data-wp-context="{}" data-wp-interactive="core/query" data-wp-key="9" data-wp-router-region="query-9" class="wp-block-query alignwide is-layout-flow wp-block-query-is-layout-flow"><ul class="columns-3 wp-block-post-template is-layout-grid wp-container-core-post-template-is-layout-84506733 wp-block-post-template-is-layout-grid"><li data-wp-key="post-template-item-455" class="wp-block-post post-455 post type-post status-publish format-standard has-post-thumbnail hentry category-media category-news category-religious category-z70 tag-catholic-church tag-indulgence tag-twitter">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="250" height="161" src="https://opentheword.org/wp-content/uploads/2013/07/st-peters-basilica-wikipedia-andreas-tille.jpg?w=250" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" data-attachment-id="495" data-permalink="https://opentheword.org/2013/07/24/twittering-your-way-to-heaven/st-peters-basilica-wikipedia-andreas-tille/" data-orig-file="https://opentheword.org/wp-content/uploads/2013/07/st-peters-basilica-wikipedia-andreas-tille.jpg" data-orig-size="250,161" 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;}" data-image-title="St-Peter&amp;#8217;s-Basilica-Wikipedia-Andreas-Tille" data-image-description="&lt;p&gt;St. Peter&amp;#8217;s Basilica: Wikipedia/Andreas Tille&lt;/p&gt;
" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2013/07/st-peters-basilica-wikipedia-andreas-tille.jpg?w=250" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2013-07-24T07:52:30-06:00">July 24, 2013</time></div>

<h6 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2013/07/24/twittering-your-way-to-heaven/" target="_self" >Twittering your way to&nbsp;heaven?</a></h6></div>
</div>

</li><li data-wp-key="post-template-item-5943" class="wp-block-post post-5943 post type-post status-publish format-standard has-post-thumbnail hentry category-media category-news category-persecution-news category-religious category-z88 tag-china tag-chinese-underground-church">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="500" height="280" src="https://opentheword.org/wp-content/uploads/2014/04/china-tiananmen-square-wikipedia-derzsi-elekes-andor.jpg?w=500" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" data-attachment-id="5962" data-permalink="https://opentheword.org/2014/04/15/is-chinas-underground-church-making-jesus-more-popular-than-mao-on-twitter/china-tiananmen-square-wikipedia-derzsi-elekes-andor/" data-orig-file="https://opentheword.org/wp-content/uploads/2014/04/china-tiananmen-square-wikipedia-derzsi-elekes-andor.jpg" data-orig-size="500,280" 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;}" data-image-title="china-Tiananmen-Square-wikipedia-Derzsi-Elekes-Andor" data-image-description="" data-image-caption="&lt;p&gt;Is the underground church in China ruling the Chinese twitter universe? Photo Tiananmen Square China Wikipedia/Derzsi Elekes Andor&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2014/04/china-tiananmen-square-wikipedia-derzsi-elekes-andor.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2014-04-15T08:04:17-06:00">April 15, 2014</time></div>

<h6 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2014/04/15/is-chinas-underground-church-making-jesus-more-popular-than-mao-on-twitter/" target="_self" >Is China&#8217;s &#8216;underground church&#8217; making Jesus more popular than Mao on&nbsp;Twitter?</a></h6></div>
</div>

</li><li data-wp-key="post-template-item-16428" class="wp-block-post post-16428 post type-post status-publish format-standard has-post-thumbnail hentry category-israel category-main category-media category-news tag-facebook tag-israel tag-palestine">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="299" src="https://opentheword.org/wp-content/uploads/2016/01/israel-jerusalem-stefans_box-flickr-creativecommons.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Photo: Stefans_Box/Flickr/Creative Commons" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2016/01/israel-jerusalem-stefans_box-flickr-creativecommons.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2016/01/israel-jerusalem-stefans_box-flickr-creativecommons.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2016/01/israel-jerusalem-stefans_box-flickr-creativecommons.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2016/01/israel-jerusalem-stefans_box-flickr-creativecommons.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="16429" data-permalink="https://opentheword.org/2016/01/13/is-facebook-anti-israel/israel-jerusalem-stefans_box-flickr-creativecommons/" data-orig-file="https://opentheword.org/wp-content/uploads/2016/01/israel-jerusalem-stefans_box-flickr-creativecommons.jpg" data-orig-size="1200,350" 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="Israel-Jerusalem-stefans_box-Flickr-CreativeCommons" data-image-description="&lt;p&gt;Photo: Stefans_Box/Flickr/Creative Commons&lt;/p&gt;
" data-image-caption="&lt;p&gt;Photo: Stefans_Box/Flickr/Creative Commons&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2016/01/israel-jerusalem-stefans_box-flickr-creativecommons.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2016-01-13T18:25:46-06:00">January 13, 2016</time></div>

<h6 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2016/01/13/is-facebook-anti-israel/" target="_self" >Is &#8216;Facebook&#8217; anti-Israel?</a></h6></div>
</div>

</li><li data-wp-key="post-template-item-22473" class="wp-block-post post-22473 post type-post status-publish format-standard has-post-thumbnail hentry category-apologetics category-end-times-apologetics category-main category-media category-z66 tag-balaam tag-melchizedek">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="341" src="https://opentheword.org/wp-content/uploads/2017/05/euphrates-river-wikipedia-unitedstatesnavy.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="The Euphrates River in the Mesopotamia valley home to Melchizedek and Balaam. Credit: United States Navy" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2017/05/euphrates-river-wikipedia-unitedstatesnavy.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2017/05/euphrates-river-wikipedia-unitedstatesnavy.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2017/05/euphrates-river-wikipedia-unitedstatesnavy.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2017/05/euphrates-river-wikipedia-unitedstatesnavy.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="22492" data-permalink="https://opentheword.org/2017/05/16/the-spirit-of-balaam-social-media-and-the-end-of-the-age/euphrates-river-wikipedia-unitedstatesnavy/" data-orig-file="https://opentheword.org/wp-content/uploads/2017/05/euphrates-river-wikipedia-unitedstatesnavy.jpg" data-orig-size="1200,400" 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="Euphrates-River-wikipedia-UnitedStatesNavy" data-image-description="&lt;p&gt;The Euphrates River in the Mesopotamia valley home to Melchizedek and Balaam. Credit: United States Navy&lt;/p&gt;
" data-image-caption="&lt;p&gt;The Euphrates River in the Mesopotamia valley home to Melchizedek and Balaam. Credit: United States Navy&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2017/05/euphrates-river-wikipedia-unitedstatesnavy.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2017-05-16T08:02:21-06:00">May 16, 2017</time></div>

<h6 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2017/05/16/the-spirit-of-balaam-social-media-and-the-end-of-the-age/" target="_self" >The Spirit of Balaam, social media and the end of the&nbsp;age?</a></h6></div>
</div>

</li><li data-wp-key="post-template-item-26192" class="wp-block-post post-26192 post type-post status-publish format-standard has-post-thumbnail hentry category-apologetics category-arts category-celebrity-news category-main category-media category-miracles category-z93 tag-chris-pratt tag-healing tag-kevin-smith tag-twitter">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="341" src="https://opentheword.org/wp-content/uploads/2018/03/chrisprattcomicconsandiego2013-ronald-woan-flickrcreativecommons.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Chris Pratt along with other Guardians of the Galaxy film answering questions at Comic Con in San Diego in 2013. Credit: Ronald Woan/Flickr/Creative Commons" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2018/03/chrisprattcomicconsandiego2013-ronald-woan-flickrcreativecommons.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2018/03/chrisprattcomicconsandiego2013-ronald-woan-flickrcreativecommons.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2018/03/chrisprattcomicconsandiego2013-ronald-woan-flickrcreativecommons.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2018/03/chrisprattcomicconsandiego2013-ronald-woan-flickrcreativecommons.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="26195" data-permalink="https://opentheword.org/2018/03/08/chris-pratt-attacked-on-twitter-for-praying-but/chrisprattcomicconsandiego2013-ronald-woan-flickrcreativecommons/" data-orig-file="https://opentheword.org/wp-content/uploads/2018/03/chrisprattcomicconsandiego2013-ronald-woan-flickrcreativecommons.jpg" data-orig-size="1200,400" 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="ChrisPrattComicConSanDiego2013-Ronald-Woan-FlickrCreativeCommons" data-image-description="&lt;p&gt;Chris Pratt along with other Guardians of the Galaxy film answering questions at Comic Con in San Diego in 2013. Credit: Ronald Woan/Flickr/Creative Commons&lt;/p&gt;
" data-image-caption="&lt;p&gt;Chris Pratt along with other Guardians of the Galaxy film answering questions at Comic Con in San Diego in 2013. Credit: Ronald Woan/Flickr/Creative Commons&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2018/03/chrisprattcomicconsandiego2013-ronald-woan-flickrcreativecommons.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2018-03-08T08:01:23-06:00">March 8, 2018</time></div>

<h6 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2018/03/08/chris-pratt-attacked-on-twitter-for-praying-but/" target="_self" >Chris Pratt attacked on Twitter for praying,&nbsp;but&#8230;</a></h6></div>
</div>

</li><li data-wp-key="post-template-item-26563" class="wp-block-post post-26563 post type-post status-publish format-standard has-post-thumbnail hentry category-main category-media category-news category-persecution-news category-religious category-z101 tag-facebook">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="341" src="https://opentheword.org/wp-content/uploads/2018/04/facebookheadquarters-victorgrigas-wikipedia.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2018/04/facebookheadquarters-victorgrigas-wikipedia.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2018/04/facebookheadquarters-victorgrigas-wikipedia.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2018/04/facebookheadquarters-victorgrigas-wikipedia.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2018/04/facebookheadquarters-victorgrigas-wikipedia.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="26566" data-permalink="https://opentheword.org/2018/04/04/why-did-facebook-ban-an-ad-for-a-catholic-university/facebookheadquarters-victorgrigas-wikipedia/" data-orig-file="https://opentheword.org/wp-content/uploads/2018/04/facebookheadquarters-victorgrigas-wikipedia.jpg" data-orig-size="1200,400" 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="FacebookHeadquarters-victorgrigas-Wikipedia" data-image-description="" data-image-caption="&lt;p&gt;Inside Facebook headquarters in Mento Park, California Credit: victorgrigas/Wikipedia/Creative Commons&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2018/04/facebookheadquarters-victorgrigas-wikipedia.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><div class="wp-block-post-date has-small-font-size"><time datetime="2018-04-04T08:06:43-06:00">April 4, 2018</time></div>

<h6 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2018/04/04/why-did-facebook-ban-an-ad-for-a-catholic-university/" target="_self" >Why did Facebook ban an ad for a Catholic&nbsp;university?</a></h6></div>
</div>

</li></ul></div>
</div>



<div style="height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))" aria-hidden="true" class="wp-block-spacer"></div>
</div>
</div>
</div>
</div>



<p class="wp-block-paragraph"></p>
</div>
</main>



<div class="wp-block-group alignfull has-global-padding is-content-justification-center is-layout-constrained wp-container-core-group-is-layout-96598206 wp-block-group-is-layout-constrained" style="margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))">
<h2 class="wp-block-heading alignwide has-large-font-size">Spiritual Gifts</h2>



<div class="wp-block-group alignwide has-global-padding is-layout-constrained wp-block-group-is-layout-constrained">
<div style="height:2px" aria-hidden="true" class="wp-block-spacer"></div>



<div data-wp-context="{}" data-wp-interactive="core/query" data-wp-key="9" data-wp-router-region="query-9" class="wp-block-query alignwide is-layout-flow wp-block-query-is-layout-flow"><ul class="columns-5 wp-block-post-template is-layout-grid wp-container-core-post-template-is-layout-0eb934a7 wp-block-post-template-is-layout-grid"><li data-wp-key="post-template-item-11503" class="wp-block-post post-11503 post type-post status-publish format-standard has-post-thumbnail hentry category-arts category-celebrity-news category-main category-news category-podcasts category-religious category-z13 tag-armenia tag-armenian-genocide tag-azusa-street tag-bible-podcast tag-biblical-teaching-podcast tag-christian-podcast tag-christianity-podcast tag-dean-smith tag-efim-klubnikin tag-gift-of-prophecy tag-holy-spirit tag-kardashian-family tag-kim-kardashian tag-molokan tag-prophecy tag-revival tag-spiritual-gifts tag-turkey">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="500" height="300" src="https://opentheword.org/wp-content/uploads/2015/02/kimkardashian-eva_rinaldi_foter_cc_by-sa.jpg?w=500" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" data-attachment-id="11512" data-permalink="https://opentheword.org/2026/06/05/was-kim-kardashians-family-saved-by-a-near-two-hundred-year-old-prophecy/kimkardashian-eva_rinaldi_foter_cc_by-sa/" data-orig-file="https://opentheword.org/wp-content/uploads/2015/02/kimkardashian-eva_rinaldi_foter_cc_by-sa.jpg" data-orig-size="500,300" 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="kimKardashian-Eva_Rinaldi_Foter_CC_BY-SA" data-image-description="" data-image-caption="&lt;p&gt;Kim Kardashian Photo: Eva Rinaldi/foter/CC BY-SA&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2015/02/kimkardashian-eva_rinaldi_foter_cc_by-sa.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/06/05/was-kim-kardashians-family-saved-by-a-near-two-hundred-year-old-prophecy/" target="_self" >164 | Was the Kardashian family saved by a 175-year-old&nbsp;prophecy?</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-06-05T08:18:00-06:00">June 5, 2026</time></div></div>
</div>

</li><li data-wp-key="post-template-item-112476" class="wp-block-post post-112476 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-teaching tag-1-corinthians-13 tag-1-samuel-16 tag-bible tag-character tag-character-vs-gifting tag-christian-leadership tag-christian-living tag-christianity tag-faith tag-gifting tag-gods-testing tag-humility tag-jesus tag-spiritual-gifts tag-spiritual-maturity">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="512" src="https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Two doors on an old house block in Ireland. One door is red and the door on the right is yellow." style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="112491" data-permalink="https://opentheword.org/2026/06/05/door-one-or-door-two/doors-credit-robert-anasch-unsplash-com/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg" data-orig-size="1200,600" 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;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Doors Credit Robert Anasch, unsplash.com" data-image-description="&lt;p&gt;Two doors on an old house block in Ireland. One door is red and the door on the right is yellow.&lt;/p&gt;
" data-image-caption="&lt;p&gt;Credit: Robert Anasch, unsplash.com&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2026/06/doors-credit-robert-anasch-unsplash.com_.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/06/05/door-one-or-door-two/" target="_self" >Door one or door&nbsp;two?</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-06-05T09:41:53-06:00">June 5, 2026</time></div></div>
</div>

</li><li data-wp-key="post-template-item-112102" class="wp-block-post post-112102 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-main tag-bible tag-christianity tag-dreams tag-dreams-and-visions tag-faith tag-gift-of-prophecy tag-hearing-god tag-hearing-gods-voice tag-hearing-gods-voice-bible tag-hearing-gods-voice-verses tag-horizons-international tag-jesus tag-seer-and-prophets tag-seer-anointing tag-spiritual-gift tag-spiritual-gifts tag-visions">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2023/01/creation-of-adam-by-god-sistine-chapel-by-michelangelo-1517-wikipedia-public-domain.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Painting of the creation of Adam by Michelangelo" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2023/01/creation-of-adam-by-god-sistine-chapel-by-michelangelo-1517-wikipedia-public-domain.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2023/01/creation-of-adam-by-god-sistine-chapel-by-michelangelo-1517-wikipedia-public-domain.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2023/01/creation-of-adam-by-god-sistine-chapel-by-michelangelo-1517-wikipedia-public-domain.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2023/01/creation-of-adam-by-god-sistine-chapel-by-michelangelo-1517-wikipedia-public-domain.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="80435" data-permalink="https://opentheword.org/2023/01/29/prove-that-god-exists-or-be-an-atheist/creation-of-adam-by-god-sistine-chapel-by-michelangelo-1517-wikipedia-public-domain/" data-orig-file="https://opentheword.org/wp-content/uploads/2023/01/creation-of-adam-by-god-sistine-chapel-by-michelangelo-1517-wikipedia-public-domain.jpg" data-orig-size="1200,800" 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="creation of Adam by God Sistine Chapel by Michelangelo 1517 Wikipedia Public Domain" data-image-description="" data-image-caption="&lt;p&gt;Creation of Adam on the ceiling of the Sistine Chapel Credit: Michelangelo/1517/Wikipedia/Public Domain&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2023/01/creation-of-adam-by-god-sistine-chapel-by-michelangelo-1517-wikipedia-public-domain.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/05/22/god-still-speaks-through-dreams-and-visions/" target="_self" >God Still Speaks Through Dreams and&nbsp;Visions</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-05-22T10:16:24-06:00">May 22, 2026</time></div></div>
</div>

</li><li data-wp-key="post-template-item-106637" class="wp-block-post post-106637 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-main category-music category-praise-and-worship category-the-arts tag-faith tag-god tag-holy-spirit tag-humility tag-jesus tag-katharine-abrahams tag-music tag-power-in-music tag-power-of-music tag-pride tag-problem-of-pride tag-problems-with-worship-leaders tag-spiritual-gift tag-spiritual-gifts tag-worship tag-worship-leaders">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2021/08/music-guitar-worship-ic-8-16-2021.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Man playing a guitar" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2021/08/music-guitar-worship-ic-8-16-2021.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2021/08/music-guitar-worship-ic-8-16-2021.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2021/08/music-guitar-worship-ic-8-16-2021.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2021/08/music-guitar-worship-ic-8-16-2021.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="62715" data-permalink="https://opentheword.org/2021/08/16/ex-bloods-gang-member-singing-gospel-to-critically-ill-patients/music-guitar-worship-ic-8-16-2021/" data-orig-file="https://opentheword.org/wp-content/uploads/2021/08/music-guitar-worship-ic-8-16-2021.jpg" data-orig-size="1200,800" 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="music-guitar-worship-ic-8-16-2021" data-image-description="" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2021/08/music-guitar-worship-ic-8-16-2021.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2025/10/02/music-is-not-for-the-ears-part-2/" target="_self" >Music is NOT for the Ears! &#8212; Part&nbsp;2</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2025-10-02T05:43:06-06:00">October 2, 2025</time></div></div>
</div>

</li><li data-wp-key="post-template-item-106629" class="wp-block-post post-106629 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-main category-music category-praise-and-worship category-the-arts tag-faith tag-god tag-god-dwells-in-praise tag-god-inhabits-our-praises tag-god-sings tag-holy-spirit tag-jesus tag-katharine-abrahams tag-music tag-power-of-music tag-prophetic-music tag-psalm-1503-6 tag-spiritual-gift tag-spiritual-gifts tag-worship">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2021/09/piano-music-ic-9-19-2021.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Piano keys" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2021/09/piano-music-ic-9-19-2021.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2021/09/piano-music-ic-9-19-2021.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2021/09/piano-music-ic-9-19-2021.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2021/09/piano-music-ic-9-19-2021.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="64257" data-permalink="https://opentheword.org/2021/09/19/study-just-30-seconds-of-mozart-could-reduce-epileptic-seizures/piano-music-ic-9-19-2021/" data-orig-file="https://opentheword.org/wp-content/uploads/2021/09/piano-music-ic-9-19-2021.jpg" data-orig-size="1200,800" 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="piano-music-ic-9-19-2021" data-image-description="" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2021/09/piano-music-ic-9-19-2021.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2025/09/29/music-is-not-for-the-ears-part-1/" target="_self" >Music is NOT for the Ears! — Part&nbsp;1</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2025-09-29T08:02:26-06:00">September 29, 2025</time></div></div>
</div>

</li><li data-wp-key="post-template-item-106347" class="wp-block-post post-106347 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-main tag-advocate tag-bible tag-comforter tag-faith tag-gift-of-prophecy tag-god tag-helper tag-holy-spirit tag-holy-spirit-our-comforter tag-jesus tag-john-1316-18 tag-parakletos-2 tag-prophecy tag-prophetic-timing tag-spiritual-gifts tag-timing-in-prophetic">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2023/11/scales-of-justice-legal-gavel-law-court-ic-11-6-2023.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2023/11/scales-of-justice-legal-gavel-law-court-ic-11-6-2023.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2023/11/scales-of-justice-legal-gavel-law-court-ic-11-6-2023.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2023/11/scales-of-justice-legal-gavel-law-court-ic-11-6-2023.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2023/11/scales-of-justice-legal-gavel-law-court-ic-11-6-2023.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="88379" data-permalink="https://opentheword.org/2023/11/06/modern-arguments-have-you-been-sued-yet/%e6%8d%93%e6%b1%a1%e7%8d%a5%e6%bc%a0%e2%81%a6%e7%95%aa%e7%91%b3%e6%8d%a9%e2%81%a5%e6%b9%a1%e2%81%a4%e6%85%a7%e6%95%b6%e2%81%ac%e6%b9%af%e7%90%a0%e6%89%a1%e6%95%ac%e6%bc%a0%e2%81%a6%e6%bd%ae-3/" data-orig-file="https://opentheword.org/wp-content/uploads/2023/11/scales-of-justice-legal-gavel-law-court-ic-11-6-2023.jpg" data-orig-size="1200,800" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;8&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;Canon EOS 5D Mark III&quot;,&quot;caption&quot;:&quot;Scales of justice and gavel on table of notary public&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;165&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.00625&quot;,&quot;title&quot;:&quot;\u6353\u6c61\u7365\u6f20\u2066\u756a\u7473\u6369\u2065\u6e61\u2064\u6167\u6576\u206c\u6e6f\u7420\u6261\u656c\u6f20\u2066\u6f6e&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="scales of justice, balance, gavel, legal law court ic-11-6-2023" data-image-description="" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2023/11/scales-of-justice-legal-gavel-law-court-ic-11-6-2023.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2025/09/18/now-lord/" target="_self" >Now Lord?</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2025-09-18T10:13:17-06:00">September 18, 2025</time></div></div>
</div>

</li><li data-wp-key="post-template-item-108768" class="wp-block-post post-108768 post type-post status-publish format-standard has-post-thumbnail hentry category-end-times-apologetics category-holy-spirit category-main category-spiritual-warfare-bible tag-2-timothy-31-in-the-last-days-perilous-times-will-come tag-bible tag-christianity tag-dreams-and-visions tag-end-times-2 tag-end-times tag-increased-demonic-activity tag-isaiah-601-2-arise-shine-for-your-light-has-come tag-jesus tag-perilous-times-in-end-times tag-preparing-for-the-end-times tag-rick-renner tag-spiritual-gift tag-spiritual-gifts tag-spiritual-warfare tag-visions">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="512" src="https://opentheword.org/wp-content/uploads/2026/01/dark-night-credit-kai-cheng-unsplash.com_.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Quiet city street on a dark night" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/01/dark-night-credit-kai-cheng-unsplash.com_.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/01/dark-night-credit-kai-cheng-unsplash.com_.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/01/dark-night-credit-kai-cheng-unsplash.com_.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/01/dark-night-credit-kai-cheng-unsplash.com_.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="108772" data-permalink="https://opentheword.org/2026/01/07/standing-together-to-overcome-the-darkness/dark-night-credit-kai-cheng-unsplash-com/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/01/dark-night-credit-kai-cheng-unsplash.com_.jpg" data-orig-size="1200,600" 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="Dark Night city street Credit Kai Cheng, unsplash.com" data-image-description="&lt;p&gt;Quiet city street on a dark night&lt;/p&gt;
" data-image-caption="&lt;p&gt;Credit: Kai Cheng, unsplash.com&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2026/01/dark-night-credit-kai-cheng-unsplash.com_.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/01/07/standing-together-to-overcome-the-darkness/" target="_self" >Standing Together to Overcome the&nbsp;Darkness</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-01-07T07:39:03-06:00">January 7, 2026</time></div></div>
</div>

</li><li data-wp-key="post-template-item-109066" class="wp-block-post post-109066 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-main category-spiritual-warfare-bible tag-1-corinthians-12-spiritual-gifts tag-1-corinthians-1210-discerning-of-spirits tag-adrian-ko tag-baptism-of-the-holy-spirit tag-discerning-of-spirits tag-distinguishing-of-spirits tag-holy-spirit tag-holy-spirit-and-spiritual-gifts tag-holy-spirit-gifts tag-spiritual-gift tag-spiritual-gifts tag-spiritual-warfare tag-what-is-discerning-of-spirits">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2025/10/jesus-casting-out-demons-from-gerasene-man-by-johannes-wierix-1585.-wikipedia-public-domain.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Painting of Jesus casting out demons from Gerasene man" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2025/10/jesus-casting-out-demons-from-gerasene-man-by-johannes-wierix-1585.-wikipedia-public-domain.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2025/10/jesus-casting-out-demons-from-gerasene-man-by-johannes-wierix-1585.-wikipedia-public-domain.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2025/10/jesus-casting-out-demons-from-gerasene-man-by-johannes-wierix-1585.-wikipedia-public-domain.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2025/10/jesus-casting-out-demons-from-gerasene-man-by-johannes-wierix-1585.-wikipedia-public-domain.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="107066" data-permalink="https://opentheword.org/2025/10/17/147-are-we-seeing-evidence-that-spiritual-warfare-is-heating-up/jesus-casting-out-demons-from-gerasene-man-by-johannes-wierix-1585-wikipedia-public-domain/" data-orig-file="https://opentheword.org/wp-content/uploads/2025/10/jesus-casting-out-demons-from-gerasene-man-by-johannes-wierix-1585.-wikipedia-public-domain.jpg" data-orig-size="1200,800" 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="Jesus casting out demons from Gerasene man by Johannes Wierix, 1585. Wikipedia, Public Domain" data-image-description="&lt;p&gt;Painting of Jesus casting out demons from Gerasene man&lt;/p&gt;
" data-image-caption="&lt;p&gt;Jesus casting out demons from Gerasene man by Johannes Wierix, 1585. Wikipedia, Public Domain&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2025/10/jesus-casting-out-demons-from-gerasene-man-by-johannes-wierix-1585.-wikipedia-public-domain.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/01/19/the-gift-of-discerning-of-spirits/" target="_self" >The Gift of Discerning of&nbsp;Spirits</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-01-19T08:09:00-06:00">January 19, 2026</time></div></div>
</div>

</li><li data-wp-key="post-template-item-111361" class="wp-block-post post-111361 post type-post status-publish format-standard has-post-thumbnail hentry category-main category-miracles category-studies tag-answers-to-prayer tag-bible tag-christianity tag-divine-healing tag-empowered-by-the-holy-spirit tag-faith tag-god tag-holy-spirit tag-holy-spirit-and-prayer tag-holy-spirit-power tag-jesus tag-poll tag-power tag-spiritual-gift tag-spiritual-gifts">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="111408" data-permalink="https://opentheword.org/2026/04/27/the-rise-of-everyday-miracles-what-the-polls-reveal/group-of-average-americans-nurse-construction-worker-chef-fir/" data-orig-file="https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg" data-orig-size="1200,800" 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;Group of Average Americans nurse, construction worker, chef, fir&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Group of Average Americans nurse, construction worker, chef, fir" data-image-description="" data-image-caption="" data-large-file="https://opentheword.org/wp-content/uploads/2026/04/group-of-average-americans-nurse-construction-worker-chef-fireman-farmer-and-mechanic.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/04/27/the-rise-of-everyday-miracles-what-the-polls-reveal/" target="_self" >The Rise of Everyday Miracles: What the Polls&nbsp;Reveal</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-04-27T11:57:15-06:00">April 27, 2026</time></div></div>
</div>

</li><li data-wp-key="post-template-item-109916" class="wp-block-post post-109916 post type-post status-publish format-standard has-post-thumbnail hentry category-holy-spirit category-main category-spiritual-warfare-bible tag-bible tag-christianity tag-faith tag-gift-of-tongues tag-gift-of-tongues-scripture tag-gift-of-tongues-vs-speaking-in-tongues tag-holy-spirit tag-jesus tag-kap-chatfield tag-luke-reelfs tag-spiritual-gift tag-spiritual-gifts tag-the-gift-of-tongues-in-the-bible tag-the-importance-of-the-gift-of-tongues">

<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><figure style="aspect-ratio:4/3" class="wp-block-post-featured-image"><img width="1024" height="683" src="https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg?w=1024" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Holy Spirit descends on Day of Pentecost by Anthony van Dyck" style="width:100%;height:100%;object-fit:cover;" decoding="async" loading="lazy" srcset="https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg?w=1024 1024w, https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg?w=500 500w, https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg?w=768 768w, https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" data-attachment-id="96856" data-permalink="https://opentheword.org/2024/10/09/the-supernatural-intercessory-ministry-of-the-holy-spirit/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain/" data-orig-file="https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg" data-orig-size="1200,800" 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="Holy Spirit descends on Day of Pentecost by Anthony van Dyck, 1618, Wikipedia, Public Domain" data-image-description="&lt;p&gt;Holy Spirit descends on Day of Pentecost by Anthony van Dyck&lt;/p&gt;
" data-image-caption="&lt;p&gt;Holy Spirit descends on Day of Pentecost by Anthony van Dyck, 1618, Wikipedia, Public Domain&lt;/p&gt;
" data-large-file="https://opentheword.org/wp-content/uploads/2024/10/holy-spirit-descends-on-day-of-pentecost-by-anthony-van-dyck-1618-wikipedia-public-domain.jpg?w=500" /></figure>


<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-cd8e67f9 wp-block-group-is-layout-constrained"><h3 class="no-underline wp-block-post-title has-medium-font-size has-text-align-left"><a href="https://opentheword.org/2026/03/02/we-need-to-be-praying-in-tongues-more/" target="_self" >We Need to be Praying in Tongues&nbsp;More</a></h3>

<div class="wp-block-post-date has-small-font-size"><time datetime="2026-03-02T11:56:37-06:00">March 2, 2026</time></div></div>
</div>

</li></ul></div>
</div>



<div style="height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))" aria-hidden="true" class="wp-block-spacer"></div>
</div>


<footer class="wp-block-template-part">
<div class="wp-block-group has-base-color has-contrast-background-color has-text-color has-background has-link-color wp-elements-83ce8d173441890f59d9af5298e5f65f has-global-padding is-layout-constrained wp-block-group-is-layout-constrained">
<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow" style="padding-top:var(--wp--preset--spacing--70);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
<p class="has-text-align-center wp-block-paragraph" style="margin-top:var(--wp--preset--spacing--70)">Subscribe and we’ll keep you in the loop when articles are published. You can receive notifications as the articles are posted or as part of a weekly summary.</p>


	<div class="wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions">
		<div class="wp-block-jetpack-subscriptions__container is-not-subscriber">
							<form
					action="https://wordpress.com/email-subscriptions"
					method="post"
					accept-charset="utf-8"
					data-blog="54736365"
					data-post_access_level="everybody"
					data-subscriber_email=""
					id="subscribe-blog"
				>
					<div class="wp-block-jetpack-subscriptions__form-elements">
												<p id="subscribe-email">
							<label
								id="subscribe-field-label"
								for="subscribe-field"
								class="screen-reader-text"
							>
								Type your email…							</label>
							<input
									required="required"
									type="email"
									name="email"
									autocomplete="email"
									class="no-border-radius "
									style="font-size: 16px;padding: 15px 23px 15px 23px;border-radius: 0px;border-width: 1px;"
									placeholder="Type your email…"
									value=""
									id="subscribe-field"
									title="Please fill in this field."
								/>						</p>
												<p id="subscribe-submit"
													>
							<input type="hidden" name="action" value="subscribe"/>
							<input type="hidden" name="blog_id" value="54736365"/>
							<input type="hidden" name="source" value="https://opentheword.org/?option=com_ninjarsssyndicator&#038;feed_id=27&#038;format=raw"/>
							<input type="hidden" name="sub-type" value="subscribe-block"/>
							<input type="hidden" name="app_source" value=""/>
							<input type="hidden" name="redirect_fragment" value="subscribe-blog"/>
							<input type="hidden" name="lang" value="en"/>
							<input type="hidden" id="_wpnonce" name="_wpnonce" value="68df99acd2" /><input type="hidden" name="_wp_http_referer" value="/?option=com_ninjarsssyndicator&#038;feed_id=27&#038;format=raw" />							<button type="submit"
																	class="wp-block-button__link no-border-radius"
																									style="font-size: 16px;padding: 15px 23px 15px 23px;margin: 0; margin-left: 10px;border-radius: 0px;border-width: 1px;"
																name="jetpack_subscriptions_widget"
							>
								Subscribe							</button>
						</p>
					</div>
				</form>
								</div>
	</div>
	


<ul class="wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only is-content-justification-center is-layout-flex wp-container-core-social-links-is-layout-f420c6cc wp-block-social-links-is-layout-flex" style="margin-top:var(--wp--preset--spacing--70)"><li style="color:#ffffff" class="wp-social-link wp-social-link-facebook has-base-color wp-block-social-link"><a href="#" 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="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Facebook</span></a></li>

<li style="color:#ffffff" class="wp-social-link wp-social-link-twitter has-base-color wp-block-social-link"><a href="#" 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:#ffffff" class="wp-social-link wp-social-link-instagram has-base-color wp-block-social-link"><a href="#" 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="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Instagram</span></a></li>

<li style="color:#ffffff" class="wp-social-link wp-social-link-youtube has-base-color wp-block-social-link"><a href="#" 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="M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"></path></svg><span class="wp-block-social-link-label screen-reader-text">YouTube</span></a></li></ul>


<nav class="items-justified-center wp-block-navigation is-content-justification-center is-layout-flex wp-container-core-navigation-is-layout-ee856660 wp-block-navigation-is-layout-flex" aria-label="Top Menu 2"><ul class="wp-block-navigation__container items-justified-center wp-block-navigation"><li class="wp-block-navigation-item menu-item menu-item-type-custom menu-item-object-custom wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://openthewordblog.wordpress.com/" title=""><span class="wp-block-navigation-item__label">Home</span></a></li><li data-wp-context="{ &quot;submenuOpenedBy&quot;: { &quot;click&quot;: false, &quot;hover&quot;: false, &quot;focus&quot;: false }, &quot;type&quot;: &quot;submenu&quot;, &quot;modal&quot;: null, &quot;previousFocus&quot;: null }" data-wp-interactive="core/navigation" data-wp-on--focusout="actions.handleMenuFocusout" data-wp-on--keydown="actions.handleMenuKeydown" data-wp-on--pointerenter="actions.openMenuOnHover" data-wp-on--pointerleave="actions.closeMenuOnHover" data-wp-watch="callbacks.initMenu" tabindex="-1" class="wp-block-navigation-item has-child open-on-hover-click menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><a class="wp-block-navigation-item__content" href="https://opentheword.org/category/news/" title=""><span class="wp-block-navigation-item__label">News</span></a><button data-wp-bind--aria-expanded="state.isMenuOpen" data-wp-on--click="actions.toggleMenuOnClick" aria-label="News submenu" class="wp-block-navigation__submenu-icon wp-block-navigation-submenu__toggle" ><svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true" focusable="false"><path d="M1.50002 4L6.00002 8L10.5 4" stroke-width="1.5"></path></svg></button><ul data-wp-on--focus="actions.openMenuOnFocus" class="wp-block-navigation__submenu-container menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/abortion/" title=""><span class="wp-block-navigation-item__label">Abortion</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/biography/" title=""><span class="wp-block-navigation-item__label">Biography</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/christmas/" title=""><span class="wp-block-navigation-item__label">Christmas</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/culture/" title=""><span class="wp-block-navigation-item__label">Culture</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/family/" title=""><span class="wp-block-navigation-item__label">Family</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/global-warming/" title=""><span class="wp-block-navigation-item__label">Global warming</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/humour/" title=""><span class="wp-block-navigation-item__label">Humour</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/islam/" title=""><span class="wp-block-navigation-item__label">Islam</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/israel/" title=""><span class="wp-block-navigation-item__label">Israel</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/media/" title=""><span class="wp-block-navigation-item__label">Media</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/persecution/" title=""><span class="wp-block-navigation-item__label">Persecution</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/politics/" title=""><span class="wp-block-navigation-item__label">Politics</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/religious/" title=""><span class="wp-block-navigation-item__label">Religious</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/studies/" title=""><span class="wp-block-navigation-item__label">Studies</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/news/testimony/" title=""><span class="wp-block-navigation-item__label">Testimony</span></a></li></ul></li><li data-wp-context="{ &quot;submenuOpenedBy&quot;: { &quot;click&quot;: false, &quot;hover&quot;: false, &quot;focus&quot;: false }, &quot;type&quot;: &quot;submenu&quot;, &quot;modal&quot;: null, &quot;previousFocus&quot;: null }" data-wp-interactive="core/navigation" data-wp-on--focusout="actions.handleMenuFocusout" data-wp-on--keydown="actions.handleMenuKeydown" data-wp-on--pointerenter="actions.openMenuOnHover" data-wp-on--pointerleave="actions.closeMenuOnHover" data-wp-watch="callbacks.initMenu" tabindex="-1" class="wp-block-navigation-item has-child open-on-hover-click menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><a class="wp-block-navigation-item__content" href="https://opentheword.org/category/bible/" title=""><span class="wp-block-navigation-item__label">Bible</span></a><button data-wp-bind--aria-expanded="state.isMenuOpen" data-wp-on--click="actions.toggleMenuOnClick" aria-label="Bible submenu" class="wp-block-navigation__submenu-icon wp-block-navigation-submenu__toggle" ><svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true" focusable="false"><path d="M1.50002 4L6.00002 8L10.5 4" stroke-width="1.5"></path></svg></button><ul data-wp-on--focus="actions.openMenuOnFocus" class="wp-block-navigation__submenu-container menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/opinion/" title=""><span class="wp-block-navigation-item__label">Opinion</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/bible/prayer/" title=""><span class="wp-block-navigation-item__label">Prayer</span></a></li><li class="wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/bible/praise-and-worship/"><span class="wp-block-navigation-item__label">Praise and Worship</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/bible/holy-spirit/" title=""><span class="wp-block-navigation-item__label">Holy Spirit</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/bible/spiritual-warfare/" title=""><span class="wp-block-navigation-item__label">Spiritual Warfare</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/bible/teaching/" title=""><span class="wp-block-navigation-item__label">Teaching</span></a></li><li class="wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/podcasts/"><span class="wp-block-navigation-item__label">Podcast Notes</span></a></li></ul></li><li data-wp-context="{ &quot;submenuOpenedBy&quot;: { &quot;click&quot;: false, &quot;hover&quot;: false, &quot;focus&quot;: false }, &quot;type&quot;: &quot;submenu&quot;, &quot;modal&quot;: null, &quot;previousFocus&quot;: null }" data-wp-interactive="core/navigation" data-wp-on--focusout="actions.handleMenuFocusout" data-wp-on--keydown="actions.handleMenuKeydown" data-wp-on--pointerenter="actions.openMenuOnHover" data-wp-on--pointerleave="actions.closeMenuOnHover" data-wp-watch="callbacks.initMenu" tabindex="-1" class="wp-block-navigation-item has-child open-on-hover-click menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><a class="wp-block-navigation-item__content" href="https://opentheword.org/category/women/" title=""><span class="wp-block-navigation-item__label">Women</span></a><button data-wp-bind--aria-expanded="state.isMenuOpen" data-wp-on--click="actions.toggleMenuOnClick" aria-label="Women submenu" class="wp-block-navigation__submenu-icon wp-block-navigation-submenu__toggle" ><svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true" focusable="false"><path d="M1.50002 4L6.00002 8L10.5 4" stroke-width="1.5"></path></svg></button><ul data-wp-on--focus="actions.openMenuOnFocus" class="wp-block-navigation__submenu-container menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/women/arts/" title=""><span class="wp-block-navigation-item__label">Arts</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/women/devotional/" title=""><span class="wp-block-navigation-item__label">Devotional</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/women/emotional-health/" title=""><span class="wp-block-navigation-item__label">Emotional health</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/women/family/" title=""><span class="wp-block-navigation-item__label">Family</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/women/testimonial/" title=""><span class="wp-block-navigation-item__label">Testimonial</span></a></li></ul></li><li data-wp-context="{ &quot;submenuOpenedBy&quot;: { &quot;click&quot;: false, &quot;hover&quot;: false, &quot;focus&quot;: false }, &quot;type&quot;: &quot;submenu&quot;, &quot;modal&quot;: null, &quot;previousFocus&quot;: null }" data-wp-interactive="core/navigation" data-wp-on--focusout="actions.handleMenuFocusout" data-wp-on--keydown="actions.handleMenuKeydown" data-wp-on--pointerenter="actions.openMenuOnHover" data-wp-on--pointerleave="actions.closeMenuOnHover" data-wp-watch="callbacks.initMenu" tabindex="-1" class="wp-block-navigation-item has-child open-on-hover-click menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><a class="wp-block-navigation-item__content" href="https://opentheword.org/category/arts/" title=""><span class="wp-block-navigation-item__label">Arts</span></a><button data-wp-bind--aria-expanded="state.isMenuOpen" data-wp-on--click="actions.toggleMenuOnClick" aria-label="Arts submenu" class="wp-block-navigation__submenu-icon wp-block-navigation-submenu__toggle" ><svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true" focusable="false"><path d="M1.50002 4L6.00002 8L10.5 4" stroke-width="1.5"></path></svg></button><ul data-wp-on--focus="actions.openMenuOnFocus" class="wp-block-navigation__submenu-container menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><li class="wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/arts/celebrity-news/"><span class="wp-block-navigation-item__label">Celebrity News</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/arts/music/" title=""><span class="wp-block-navigation-item__label">Music</span></a></li></ul></li><li data-wp-context="{ &quot;submenuOpenedBy&quot;: { &quot;click&quot;: false, &quot;hover&quot;: false, &quot;focus&quot;: false }, &quot;type&quot;: &quot;submenu&quot;, &quot;modal&quot;: null, &quot;previousFocus&quot;: null }" data-wp-interactive="core/navigation" data-wp-on--focusout="actions.handleMenuFocusout" data-wp-on--keydown="actions.handleMenuKeydown" data-wp-on--pointerenter="actions.openMenuOnHover" data-wp-on--pointerleave="actions.closeMenuOnHover" data-wp-watch="callbacks.initMenu" tabindex="-1" class="wp-block-navigation-item has-child open-on-hover-click menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><a class="wp-block-navigation-item__content" href="https://opentheword.org/category/apologetics/" title=""><span class="wp-block-navigation-item__label">Apologetics</span></a><button data-wp-bind--aria-expanded="state.isMenuOpen" data-wp-on--click="actions.toggleMenuOnClick" aria-label="Apologetics submenu" class="wp-block-navigation__submenu-icon wp-block-navigation-submenu__toggle" ><svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true" focusable="false"><path d="M1.50002 4L6.00002 8L10.5 4" stroke-width="1.5"></path></svg></button><ul data-wp-on--focus="actions.openMenuOnFocus" class="wp-block-navigation__submenu-container menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-submenu"><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/apologetics/archaeology/" title=""><span class="wp-block-navigation-item__label">Archaeology</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/apologetics/bible/" title=""><span class="wp-block-navigation-item__label">Bible</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/apologetics/end-times/" title=""><span class="wp-block-navigation-item__label">End times</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/apologetics/miracles/" title=""><span class="wp-block-navigation-item__label">Miracles</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/apologetics/creation/" title=""><span class="wp-block-navigation-item__label">Creation</span></a></li></ul></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/bible/espanol/" title=""><span class="wp-block-navigation-item__label">Español</span></a></li><li class="wp-block-navigation-item menu-item menu-item-type-taxonomy menu-item-object-category wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://opentheword.org/category/podcasts/" title=""><span class="wp-block-navigation-item__label">Podcasts</span></a></li></ul></nav></div>



<div class="wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow" style="border-top-color:var(--wp--preset--color--secondary);border-top-style:solid;border-top-width:1px;margin-top:2px;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
<p class="has-text-align-center has-x-small-font-size wp-block-paragraph"><a href="https://wordpress.com/?ref=footer_blog" rel="nofollow">Blog at WordPress.com.</a></p>
</div>
</div>
</footer></div>
<!-- wpcom_wp_footer -->
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/files/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/premium/tenku/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script data-wp-router-options="{&quot;loadOnClientNavigation&quot;:true}" fetchpriority="low" id="@wordpress/block-library/navigation/view-js-module" src="/wp-content/plugins/gutenberg-core/v23.3.2/build/modules/block-library/navigation/view.min.js?m=1780625236i&#038;ver=96a846e1d7b789c39ab9" type="module"></script>
<script data-wp-router-options="{&quot;loadOnClientNavigation&quot;:true}" fetchpriority="low" id="@wordpress/block-library/query/view-js-module" src="/wp-content/plugins/gutenberg-core/v23.3.2/build/modules/block-library/query/view.min.js?m=1780625236i&#038;ver=7a4ec5bfb61a7137cf4b" type="module"></script>
<script id="wp-script-module-data-@wordpress/interactivity" type="application/json">
{"state":{"core/router":{"url":"https://opentheword.org/?option=com_ninjarsssyndicator&feed_id=27&format=raw"}}}
</script>
<script id="wp-script-module-data-@wordpress/interactivity-router" type="application/json">
{"i18n":{"loading":"Loading page, please wait.","loaded":"Page Loaded."}}
</script>
<script id="grofiles-cards-js" src="//0.gravatar.com/js/hovercards/hovercards.min.js?ver=202624d1133547e8a1f2801609f51cef12522abe7f6647d869e9fbc974fe356a37e613"></script>
<script id="wpgroho-js-extra">
var WPGroHo = {"my_hash":""};
//# sourceURL=wpgroho-js-extra
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/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.',
							'Gravatar not found.': 'Gravatar not found.',
							'Too Many Requests.': 'Too Many Requests.',
							'Internal Server Error.': 'Internal Server Error.',
							'Is this you?': 'Is this you?',
							'Claim your free profile.': 'Claim your free profile.',
							'Email': 'Email',
							'Home Phone': 'Home Phone',
							'Work Phone': 'Work Phone',
							'Cell Phone': 'Cell Phone',
							'Contact Form': 'Contact Form',
							'Calendar': 'Calendar',
						},
					}
				);
			}

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

		<div style="display:none">
	<div class="grofile-hash-map-9368542c64566e74e55d056c3740b08e">
	</div>
	</div>
		<!-- CCPA [start] -->
		<script type="text/javascript">
			( function () {

				var setupPrivacy = function() {

					// Minimal Mozilla Cookie library
					// https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie/Simple_document.cookie_framework
					var cookieLib = window.cookieLib = {getItem:function(e){return e&&decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*"+encodeURIComponent(e).replace(/[\-\.\+\*]/g,"\\$&")+"\\s*\\=\\s*([^;]*).*$)|^.*$"),"$1"))||null},setItem:function(e,o,n,t,r,i){if(!e||/^(?:expires|max\-age|path|domain|secure)$/i.test(e))return!1;var c="";if(n)switch(n.constructor){case Number:c=n===1/0?"; expires=Fri, 31 Dec 9999 23:59:59 GMT":"; max-age="+n;break;case String:c="; expires="+n;break;case Date:c="; expires="+n.toUTCString()}return"rootDomain"!==r&&".rootDomain"!==r||(r=(".rootDomain"===r?".":"")+document.location.hostname.split(".").slice(-2).join(".")),document.cookie=encodeURIComponent(e)+"="+encodeURIComponent(o)+c+(r?"; domain="+r:"")+(t?"; path="+t:"")+(i?"; secure":""),!0}};

					// Implement IAB USP API.
					window.__uspapi = function( command, version, callback ) {

						// Validate callback.
						if ( typeof callback !== 'function' ) {
							return;
						}

						// Validate the given command.
						if ( command !== 'getUSPData' || version !== 1 ) {
							callback( null, false );
							return;
						}

						// Check for GPC. If set, override any stored cookie.
						if ( navigator.globalPrivacyControl ) {
							callback( { version: 1, uspString: '1YYN' }, true );
							return;
						}

						// Check for cookie.
						var consent = cookieLib.getItem( 'usprivacy' );

						// Invalid cookie.
						if ( null === consent ) {
							callback( null, false );
							return;
						}

						// Everything checks out. Fire the provided callback with the consent data.
						callback( { version: 1, uspString: consent }, true );
					};

					// Initialization.
					document.addEventListener( 'DOMContentLoaded', function() {

						// Internal functions.
						var setDefaultOptInCookie = function() {
							var value = '1YNN';
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'usprivacy', value, 365 * 24 * 60 * 60, '/', domain );
						};

						var setDefaultOptOutCookie = function() {
							var value = '1YYN';
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'usprivacy', value, 24 * 60 * 60, '/', domain );
						};

						var setDefaultNotApplicableCookie = function() {
							var value = '1---';
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'usprivacy', value, 24 * 60 * 60, '/', domain );
						};

						var setCcpaAppliesCookie = function( applies ) {
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'ccpa_applies', applies, 24 * 60 * 60, '/', domain );
						}

						var maybeCallDoNotSellCallback = function() {
							if ( 'function' === typeof window.doNotSellCallback ) {
								return window.doNotSellCallback();
							}

							return false;
						}

						// Look for usprivacy cookie first.
						var usprivacyCookie = cookieLib.getItem( 'usprivacy' );

						// Found a usprivacy cookie.
						if ( null !== usprivacyCookie ) {

							// If the cookie indicates that CCPA does not apply, then bail.
							if ( '1---' === usprivacyCookie ) {
								return;
							}

							// CCPA applies, so call our callback to add Do Not Sell link to the page.
							maybeCallDoNotSellCallback();

							// We're all done, no more processing needed.
							return;
						}

						// We don't have a usprivacy cookie, so check to see if we have a CCPA applies cookie.
						var ccpaCookie = cookieLib.getItem( 'ccpa_applies' );

						// No CCPA applies cookie found, so we'll need to geolocate if this visitor is from California.
						// This needs to happen client side because we do not have region geo data in our $SERVER headers,
						// only country data -- therefore we can't vary cache on the region.
						if ( null === ccpaCookie ) {

							var request = new XMLHttpRequest();
							request.open( 'GET', 'https://public-api.wordpress.com/geo/', true );

							request.onreadystatechange = function () {
								if ( 4 === this.readyState ) {
									if ( 200 === this.status ) {

										// Got a geo response. Parse out the region data.
										var data = JSON.parse( this.response );
										var region      = data.region ? data.region.toLowerCase() : '';
										var ccpa_applies = ['california', 'colorado', 'connecticut', 'delaware', 'indiana', 'iowa', 'montana', 'new jersey', 'oregon', 'tennessee', 'texas', 'utah', 'virginia'].indexOf( region ) > -1;
										// Set CCPA applies cookie. This keeps us from having to make a geo request too frequently.
										setCcpaAppliesCookie( ccpa_applies );

										// Check if CCPA applies to set the proper usprivacy cookie.
										if ( ccpa_applies ) {
											if ( maybeCallDoNotSellCallback() ) {
												// Do Not Sell link added, so set default opt-in.
												setDefaultOptInCookie();
											} else {
												// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
												setDefaultOptOutCookie();
											}
										} else {
											// CCPA does not apply.
											setDefaultNotApplicableCookie();
										}
									} else {
										// Could not geo, so let's assume for now that CCPA applies to be safe.
										setCcpaAppliesCookie( true );
										if ( maybeCallDoNotSellCallback() ) {
											// Do Not Sell link added, so set default opt-in.
											setDefaultOptInCookie();
										} else {
											// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
											setDefaultOptOutCookie();
										}
									}
								}
							};

							// Send the geo request.
							request.send();
						} else {
							// We found a CCPA applies cookie.
							if ( ccpaCookie === 'true' ) {
								if ( maybeCallDoNotSellCallback() ) {
									// Do Not Sell link added, so set default opt-in.
									setDefaultOptInCookie();
								} else {
									// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
									setDefaultOptOutCookie();
								}
							} else {
								// CCPA does not apply.
								setDefaultNotApplicableCookie();
							}
						}
					} );
				};

				// Kickoff initialization.
				if ( window.defQueue && defQueue.isLOHP && defQueue.isLOHP === 2020 ) {
					defQueue.items.push( setupPrivacy );
				} else {
					setupPrivacy();
				}

			} )();
		</script>

		<!-- CCPA [end] -->
		<div class="widget widget_eu_cookie_law_widget">
<div
	class="hide-on-button ads-active"
	data-hide-timeout="30"
	data-consent-expiration="180"
	id="eu-cookie-law"
	style="display: none"
>
	<form method="post">
		<input type="submit" value="Close and accept" class="accept" />

		Privacy &amp; Cookies: This site uses cookies. By continuing to use this website, you agree to their use. <br />
To find out more, including how to control cookies, see here:
				<a href="https://automattic.com/cookies/" rel="nofollow">
			Cookie Policy		</a>
 </form>
</div>
</div>			<div
				class="wp-interactivity-router-loading-bar"
				data-wp-interactive="core/router/private"
				data-wp-class--start-animation="state.navigation.hasStarted"
				data-wp-class--finish-animation="state.navigation.hasFinished"
			></div>		<div id="actionbar" dir="ltr" style="display: none;"
			class="actnbr-premium-tenku actnbr-has-follow actnbr-has-actions">
		<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://opentheword.org">
				<img loading='lazy' alt='' src='https://s2.wp.com/i/logo/wpcom-gray-white.png?m=1479929237i' srcset='https://s2.wp.com/i/logo/wpcom-gray-white.png 1x' class='avatar avatar-50' height='50' width='50' />				OpentheWord.org			</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 1,343 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="54736365" />
										<input type="hidden" name="source" value="https://opentheword.org/?option=com_ninjarsssyndicator&#038;feed_id=27&#038;format=raw" />
										<input type="hidden" name="sub-type" value="actionbar-follow" />
										<input type="hidden" id="_wpnonce" name="_wpnonce" value="68df99acd2" />										<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%252Fopentheword.org%252F2026%252F06%252F11%252Fis-there-any-merry-among-you%252F">Log in now.</a>										</div>
									</li>
								</ul>
															</div>
						</div>
					</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"/></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://opentheword.org">
				<img loading='lazy' alt='' src='https://s2.wp.com/i/logo/wpcom-gray-white.png?m=1479929237i' srcset='https://s2.wp.com/i/logo/wpcom-gray-white.png 1x' class='avatar avatar-50' height='50' width='50' />				OpentheWord.org			</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%252Fopentheword.org%252F2026%252F06%252F11%252Fis-there-any-merry-among-you%252F">Log in</a></li>
															<li class="flb-report">
									<a href="https://wordpress.com/abuse/?report_url=https://opentheword.org" target="_blank" rel="noopener noreferrer">
										Report this content									</a>
								</li>
															<li class="actnbr-reader">
									<a href="https://wordpress.com/reader/feeds/12309255">
										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( "DOMContentLoaded", function( event ) {
	var link = document.createElement( "link" );
	link.href = "/wp-content/mu-plugins/actionbar/actionbar.css?v=20250116";
	link.type = "text/css";
	link.rel = "stylesheet";
	document.head.appendChild( link );

	var script = document.createElement( "script" );
	script.src = "/wp-content/mu-plugins/actionbar/actionbar.js?v=20250204";
	document.body.appendChild( script );
} );
</script>

	<script crossorigin='anonymous' type='text/javascript'  src='/_static/??-eJyFkF1OAzEMhC9E6oIK7QviKMhNzNa7zk/Xzka9PYG2KgKpvM43MxoNtOJ8TkbJYC95cEXqwEmh5TlgUOcFVUlh7BKauOVpNeoD/IjFegtxGMgUqHaaJyYn2MAoFkGjX/qdHuGpu4+VKh0wBaH5aubkpYbznsBqsFAKef5CJcvpg0VWkdOd7pGsoJ9cl1rxOV4AaE1X9n4pxWo5ohn7PynQ2cO+sgRI1PSb9f/8pO58Y1ZTtzC1/3if+hZfH7fb3Xr3vHlZj58w4pc9'></script>
<script id="wp-dom-ready-js" src="/wp-content/plugins/gutenberg-core/v23.3.2/build/scripts/dom-ready/index.min.js?m=1780625236i&#038;ver=a06281ae5cf5500e9317"></script>
<script data-wp-strategy="defer" defer id="jetpack-block-subscriptions-js" src="/wp-content/mu-plugins/jetpack-plugin/sun/_inc/blocks/subscriptions/view.js?m=1778085426i&#038;minify=false&#038;ver=16.0-a.0"></script>
<script id="coblocks-loader-js-extra">
var wpcom_coblocks_js = {"coblocks_masonry_js":"https://s2.wp.com/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/js/coblocks-masonry.min.js?m=1681832297i","coblocks_lightbox_js":"https://s2.wp.com/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/js/coblocks-lightbox.min.js?m=1681832297i","jquery_core_js":"/wp-includes/js/jquery/jquery.min.js","jquery_migrate_js":"/wp-includes/js/jquery/jquery-migrate.min.js","masonry_js":"/wp-includes/js/masonry.min.js","imagesloaded_js":"/wp-includes/js/imagesloaded.min.js"};
var coblocksLigthboxData = {"closeLabel":"Close Gallery","leftLabel":"Previous","rightLabel":"Next"};
//# sourceURL=coblocks-loader-js-extra
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/js/coblocks-loader.min.js?m=1681832297i'></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 id="wp-emoji-settings" type="application/json">
{"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":"/wp-includes/js/wp-emoji-release.min.js?m=1764078722i&ver=7.0-RC4-62382"}}
</script>
<script type="module">
/*! This file is auto-generated */
const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!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!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let 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(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))});
//# sourceURL=/wp-includes/js/wp-emoji-loader.min.js
</script>
<div style="position:absolute;margin:-1px;padding:0;height:1px;width:1px;overflow:hidden;clip-path:inset(50%);border:0;word-wrap:normal !important;"><p id="a11y-speak-intro-text" class="a11y-speak-intro-text" hidden>Notifications</p><div id="a11y-speak-assertive" class="a11y-speak-region" aria-live="assertive" aria-relevant="additions text" aria-atomic="true"></div><div id="a11y-speak-polite" class="a11y-speak-region" aria-live="polite" aria-relevant="additions text" aria-atomic="true"></div></div><script src="//stats.wp.com/w.js?68" defer></script> <script type="text/javascript">
_tkq = window._tkq || [];
_stq = window._stq || [];
_tkq.push(['storeContext', {'blog_id':'54736365','blog_tz':'-6','user_lang':'en','blog_lang':'en','user_id':'0'}]);
		// Prevent sending pageview tracking from WP-Admin pages.
		_stq.push(['view', {'blog':'54736365','v':'wpcom','tz':'-6','user_id':'0','arch_home':'1','subd':'openthewordblog'}]);
		_stq.push(['extra', {'crypt':'UE5XaGUuOTlwaD85flAmcm1mcmZsaDhkV11YdWtpP0NsWnVkPS9sL0ViLndld3BuVT01Uj14Ti1yYTBnX3xuYUQ3Qz1oblZbVHV3MTZ6aj0wcy01aFV6Y1RhRDhuPzkwMncsNm1ad0EldTZtNXh1JSxyYW44MzAxMFBndmg2Wy16eVsyMS1CX1JPYm5rRkUxcTJxbnVtVlEyTFg5bmFba3lELkZDOGptOD1jTy9uTlQsMCtkOG5GSWZyTXRoeHhPTn56NC83NENFMVVnVlFBPXEsPTRaJn5+VCtQWmstLGgsLS03XVJUPUguWHNRLiY3clYwbHc2cDBMaThdW054Rlt6YWFESV9nRiVGQ2tPVWtrb0I3RWZHdkp6SVdBU2NlOUN5XVtHS3JXRi1iLVJVbXFxZlJnYkt0cld6eURTM0g4fCx5OUpfQg=='}]);
_stq.push([ 'clickTrackerInit', '54736365', '0' ]);
</script>
<noscript><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript>
<meta id="bilmur" property="bilmur:data" content="" data-provider="wordpress.com" data-service="simple" data-site-tz="America/Regina" data-custom-props="{&quot;enq_wp-polyfill&quot;:&quot;1&quot;,&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;premium\/tenku&quot;,&quot;wptheme_is_block&quot;:&quot;1&quot;}"  >
		<script defer src="/wp-content/js/bilmur.min.js?i=17&amp;m=202624"></script> 	</body>
</html>
