<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width">
	<title>Alana Lorens, author | Romance, adventure, danger and suspense</title>
	<link rel="profile" href="http://gmpg.org/xfn/11">
	<link rel="pingback" href="https://alana-lorens.com/xmlrpc.php">
	<!--[if lt IE 9]>
		<script src="https://s2.wp.com/wp-content/themes/pub/suits/js/html5.js?m=1389124717i" type="text/javascript"></script>
	<![endif]-->
	<script type="text/javascript">
  WebFontConfig = {"google":{"families":["Libre+Baskerville:r:latin,latin-ext","Gentium+Book+Basic:r,i,b,bi: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">.wf-active button, .wf-active html, .wf-active input, .wf-active select, .wf-active textarea{font-family:"Gentium Book Basic",serif}.wf-active body{font-size:20.8px;font-family:"Gentium Book Basic",serif}.wf-active .site-description{font-family:"Gentium Book Basic",serif;font-size:22.4px}.wf-active .widget .widget-title{font-family:"Gentium Book Basic",serif;font-size:32px}.wf-active h1, .wf-active h2, .wf-active h3, .wf-active h4, .wf-active h5, .wf-active h6{font-family:"Libre Baskerville",serif;font-weight:400;font-style:normal}.wf-active .site-title{font-family:"Libre Baskerville",serif;font-weight:400;font-style:normal}.wf-active .entry-title{font-family:"Libre Baskerville",serif;font-weight:400;font-style:normal}.wf-active .widget .widget-title{font-family:"Libre Baskerville",serif;font-weight:400;font-style:normal}.wf-active .nav-menu li a{font-family:"Libre Baskerville",serif;font-weight:400;font-style:normal}@media only screen and (min-width: 768px) and (max-width: 959px){.wf-active .menu-toggle{font-family:"Libre Baskerville",serif;font-weight:400;font-style:normal}}@media only screen and (max-width: 868px){.wf-active .site-title{font-style:normal;font-weight:400}}</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=2349'
					+ '&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=aHR0cHM6Ly9hbGFuYS1sb3JlbnMuY29t"
		+ "&wpcomid=134210132"
		+ "&time=" + Math.floor( Date.now() / 1000 );
	document.body.appendChild( iframe );
}, false );
</script>
<link rel='dns-prefetch' href='//s2.wp.com' />
<link rel='dns-prefetch' href='//fonts-api.wp.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel="alternate" type="application/rss+xml" title="Alana Lorens, author &raquo; Feed" href="https://alana-lorens.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Alana Lorens, author &raquo; Comments Feed" href="https://alana-lorens.com/comments/feed/" />
	<script type="text/javascript">
		/* <![CDATA[ */
		function addLoadEvent(func) {
			var oldonload = window.onload;
			if (typeof window.onload != 'function') {
				window.onload = func;
			} else {
				window.onload = function () {
					oldonload();
					func();
				}
			}
		}
		/* ]]> */
	</script>
	<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-1' href='/wp-content/mu-plugins/jetpack-plugin/sun/modules/infinite-scroll/infinity.css?m=1777406400i&cssminify=yes' type='text/css' media='all' />
<style id="wp-emoji-styles-inline-css">

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# 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}}

/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/common.min.css */
</style>
<style id="wp-block-separator-inline-css">
@charset "UTF-8";.wp-block-separator{border:none;border-top:2px solid}:root :where(.wp-block-separator.is-style-dots){height:auto;line-height:1;text-align:center}:root :where(.wp-block-separator.is-style-dots):before{color:currentColor;content:"···";font-family:serif;font-size:1.5em;letter-spacing:2em;padding-left:2em}.wp-block-separator.is-style-dots{background:none!important;border:none!important}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/separator/style.min.css */
</style>
<style id="wp-block-image-inline-css">
.wp-block-image>a,.wp-block-image>figure>a{display:inline-block}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}@media not (prefers-reduced-motion){.wp-block-image img.hide{visibility:hidden}.wp-block-image img.show{animation:show-content-image .4s}}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull>a,.wp-block-image.alignwide>a{width:100%}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.aligncenter,.wp-block-image.alignleft,.wp-block-image.alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image.alignright>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-image.is-style-circle-mask img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{border-radius:0;-webkit-mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-mode:alpha;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain}}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}.wp-lightbox-container{display:flex;flex-direction:column;position:relative}.wp-lightbox-container img{cursor:zoom-in}.wp-lightbox-container img:hover+button{opacity:1}.wp-lightbox-container button{align-items:center;backdrop-filter:blur(16px) saturate(180%);background-color:#5a5a5a40;border:none;border-radius:4px;cursor:zoom-in;display:flex;height:20px;justify-content:center;opacity:0;padding:0;position:absolute;right:16px;text-align:center;top:16px;width:20px;z-index:100}@media not (prefers-reduced-motion){.wp-lightbox-container button{transition:opacity .2s ease}}.wp-lightbox-container button:focus-visible{outline:3px auto #5a5a5a40;outline:3px auto -webkit-focus-ring-color;outline-offset:3px}.wp-lightbox-container button:hover{cursor:pointer;opacity:1}.wp-lightbox-container button:focus{opacity:1}.wp-lightbox-container button:focus,.wp-lightbox-container button:hover,.wp-lightbox-container button:not(:hover):not(:active):not(.has-background){background-color:#5a5a5a40;border:none}.wp-lightbox-overlay{box-sizing:border-box;cursor:zoom-out;height:100vh;left:0;overflow:hidden;position:fixed;top:0;visibility:hidden;width:100%;z-index:100000}.wp-lightbox-overlay .wp-lightbox-close-button{align-items:center;cursor:pointer;display:flex;font-family:inherit;gap:8px;justify-content:center;line-height:1;min-height:40px;min-width:40px;padding:0 4px;position:absolute;right:calc(env(safe-area-inset-right) + 16px);top:calc(env(safe-area-inset-top) + 16px);z-index:5000000}.wp-lightbox-overlay .wp-lightbox-close-button:focus,.wp-lightbox-overlay .wp-lightbox-close-button:hover,.wp-lightbox-overlay .wp-lightbox-close-button:not(:hover):not(:active):not(.has-background){background:none;border:none}.wp-lightbox-overlay .wp-lightbox-close-button:has(.wp-lightbox-close-text:not([hidden])) .wp-lightbox-close-icon svg{height:1em;width:1em}.wp-lightbox-overlay .wp-lightbox-close-icon svg{display:block}.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{align-items:center;bottom:16px;cursor:pointer;display:flex;font-family:inherit;gap:4px;justify-content:center;line-height:1;min-height:40px;min-width:40px;padding:0 8px;position:absolute;z-index:2000002}.wp-lightbox-overlay .wp-lightbox-navigation-button-next[hidden],.wp-lightbox-overlay .wp-lightbox-navigation-button-prev[hidden]{display:none}@media (min-width:960px){.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{bottom:50%;transform:translateY(-50%)}}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:not(:hover):not(:active):not(.has-background),.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:not(:hover):not(:active):not(.has-background){background:none;border:none;padding:0 8px}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg{display:block;height:1.5em;width:1.5em}.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{left:calc(env(safe-area-inset-left) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-button-next{right:calc(env(safe-area-inset-right) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-icon svg{vertical-align:middle}.wp-lightbox-overlay .lightbox-image-container{height:var(--wp--lightbox-container-height);left:50%;overflow:hidden;position:absolute;top:50%;transform:translate(-50%,-50%);transform-origin:top left;width:var(--wp--lightbox-container-width);z-index:2000001}.wp-lightbox-overlay .wp-block-image{align-items:center;box-sizing:border-box;display:flex;height:100%;justify-content:center;margin:0;position:relative;transform-origin:0 0;width:100%;z-index:3000000}.wp-lightbox-overlay .wp-block-image img{height:var(--wp--lightbox-image-height);min-height:var(--wp--lightbox-image-height);min-width:var(--wp--lightbox-image-width);width:var(--wp--lightbox-image-width)}.wp-lightbox-overlay .wp-block-image figcaption{display:none}.wp-lightbox-overlay button{background:none;border:none}.wp-lightbox-overlay .scrim{background-color:#fff;height:100%;opacity:.9;position:absolute;width:100%;z-index:2000000}.wp-lightbox-overlay.active{visibility:visible}@media not (prefers-reduced-motion){.wp-lightbox-overlay.active{animation:turn-on-visibility .25s both}.wp-lightbox-overlay.active img{animation:turn-on-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active){animation:turn-off-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active) img{animation:turn-off-visibility .25s both}.wp-lightbox-overlay.zoom.active{animation:none;opacity:1;visibility:visible}.wp-lightbox-overlay.zoom.active .lightbox-image-container{animation:lightbox-zoom-in .4s}.wp-lightbox-overlay.zoom.active .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.active .scrim{animation:turn-on-visibility .4s forwards}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active){animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container{animation:lightbox-zoom-out .4s}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim{animation:turn-off-visibility .4s forwards}}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}@keyframes turn-on-visibility{0%{opacity:0}to{opacity:1}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible}99%{opacity:0;visibility:visible}to{opacity:0;visibility:hidden}}@keyframes lightbox-zoom-in{0%{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}to{transform:translate(-50%,-50%) scale(1)}}@keyframes lightbox-zoom-out{0%{transform:translate(-50%,-50%) scale(1);visibility:visible}99%{visibility:visible}to{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/image/style.min.css */
</style>
<style id="wp-block-paragraph-inline-css">
.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/paragraph/style.min.css */
</style>
<style id="wp-block-library-inline-css-extra">
.has-text-align-justify {
	text-align:justify;
}
.has-text-align-justify{text-align:justify;}
/*# sourceURL=wp-block-library-inline-css */
</style>

<style id="classic-theme-styles-inline-css">
.wp-block-button__link{background-color:#32373c;border-radius:9999px;box-shadow:none;color:#fff;font-size:1.125em;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}.wp-block-file__button{background:#32373c;color:#fff}.wp-block-accordion-heading{margin:0}.wp-block-accordion-heading__toggle{background-color:inherit!important;color:inherit!important}.wp-block-accordion-heading__toggle:not(:focus-visible){outline:none}.wp-block-accordion-heading__toggle:focus,.wp-block-accordion-heading__toggle:hover{background-color:inherit!important;border:none;box-shadow:none;color:inherit;padding:var(--wp--preset--spacing--20,1em) 0;text-decoration:none}.wp-block-accordion-heading__toggle:focus-visible{outline:auto;outline-offset:0}.wp-block-tab:not(.has-text-color){color:inherit!important}.wp-block-tab:not(.has-background){background-color:inherit!important}.wp-block-tab:focus,.wp-block-tab:hover{text-decoration:none}.wp-block-tab:focus-visible{outline:auto;outline-offset:0}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/classic.min.css */
</style>

<link crossorigin='anonymous' rel='stylesheet' id='all-css-8-1' href='/_static/??-eJx9jUsOwjAMRC+EY6UgCAvEWZrEKoG4jWq3hduTLvisurFG1nszuBQIQ6/UK5Y8dakXDIPPQ3gINsY6Y0ESl0ww0mwOGJPolwDRVyYTRHb4V8QT/LpGqn8ura4EU0wtZeKKbWlLih1p1eWTQem5rZQ6A96XkUSgXk4Tg97qlqzelS/26KzbN835dH8DjlpbIA==&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--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: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--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, serif;--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--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px 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%;}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}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{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.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-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-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-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-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;}
/*# sourceURL=global-styles-inline-css */
</style>

<link rel='stylesheet' id='suits-font-css' href='https://fonts-api.wp.com/css?family=Lato%3A100%2C300%2C400%26subset%3Dlatin%2Clatin-ext' media='all' />
<link crossorigin='anonymous' rel='stylesheet' id='all-css-12-1' href='/wp-content/themes/pub/suits/style.css?m=1741693343i&cssminify=yes' type='text/css' media='all' />
<style id="jetpack_facebook_likebox-inline-css">
.widget_facebook_likebox {
	overflow: hidden;
}

/*# sourceURL=/wp-content/mu-plugins/jetpack-plugin/sun/modules/widgets/facebook-likebox/style.css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-14-1' href='/_static/??-eJzTLy/QTc7PK0nNK9HPLdUtyClNz8wr1i9KTcrJTwcy0/WTi5G5ekCujj52Temp+bo5+cmJJZn5eSgc3bScxMwikFb7XFtDE1NLExMLc0OTLACohS2q&cssminify=yes' type='text/css' media='all' />
<link crossorigin='anonymous' rel='stylesheet' id='print-css-15-1' href='/wp-content/mu-plugins/global-print/global-print.css?m=1465851035i&cssminify=yes' type='text/css' media='print' />
<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-18-1' href='/wp-content/themes/h4/global.css?m=1420737423i&cssminify=yes' type='text/css' media='all' />
<script id="wpcom-actionbar-placeholder-js-extra">
var actionbardata = {"siteID":"134210132","postID":"0","siteURL":"https://alana-lorens.com","xhrURL":"https://alana-lorens.com/wp-admin/admin-ajax.php","nonce":"5ad1d5f0f4","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-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/??-eJzTLy/QTc7PK0nNK9HPKtYvyinRLSjKr6jUyyrW0QfKZeYl55SmpBaDJLMKS1OLKqGUXm5mHkFFurmZ6UWJJalQxfa5tobmRgamxgZmFpZZACbyLJI='></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://alanalorenscom.wordpress.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress.com" />
<link rel='shortlink' href='https://wp.me/958by' />

<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Alana Lorens, author" />
<meta property="og:description" content="Romance, adventure, danger and suspense" />
<meta property="og:url" content="https://alana-lorens.com/" />
<meta property="og:site_name" content="Alana Lorens, author" />
<meta property="og:image" content="https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=200" />
<meta property="og:image:width" content="200" />
<meta property="og:image:height" content="200" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:creator" content="@AlexanderLyndi" />
<meta name="twitter:site" content="@AlexanderLyndi" />

<!-- End Jetpack Open Graph Tags -->
<link rel="search" type="application/opensearchdescription+xml" href="https://alana-lorens.com/osd.xml" title="Alana Lorens, author" />
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
<meta name="theme-color" content="#dcbbbf" />
<style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>		<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="Romance, adventure, danger and suspense" />
	<style type="text/css" id="suits-header-css">
			.site-header {
			background: #000 url(https://alana-lorens.com/wp-content/uploads/2017/08/cropped-cropped-romance-cover1.jpg) no-repeat scroll top;
		}
		</style>
	<style id="custom-background-css">
body.custom-background { background-color: #dcbbbf; }
</style>
<style type="text/css" id="custom-colors-css">.site-header h1.site-title { color: #FFFFFF;}
.site-header h2.site-description { color: #FFFFFF;}
.site-info { color: #FFFFFF;}
.site-info { color: #AAAAAA;}
a:hover { color: #333333;}
.entry-content a, .comment-content a, .page-content a { color: #333333;}
.entry-meta a:hover { color: #333333;}
.nav-menu li a { color: #CCCCCC;}
.nav-menu li:hover > a, .nav-menu li a:hover { color: #FFFFFF;}
.nav-menu .current_page_item > a, .nav-menu .current_page_ancestor > a, .nav-menu .current-menu-item > a, .nav-menu .current-menu-ancestor > a { color: #FFFFFF;}
.nav-menu li:hover { background-color: #404040;}
body { background-color: #dcbbbf;}
</style>
<link rel="icon" href="https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=32" sizes="32x32" />
<link rel="icon" href="https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=192" sizes="192x192" />
<link rel="apple-touch-icon" href="https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=180" />
<meta name="msapplication-TileImage" content="https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=270" />
<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-5' href='/_static/??-eJydzUEKAjEMheELWVNhsCvxKFLTUDqTNqVpGby9CiquRGb5P8IXWKtBKZ1KhzxM5RFTUZipV4/Lq0FHgUsqCFcWXBR0TZXaHlV38DeQJQwmBfRNhhJ/bt7DRm9NIVJXiCKhkQ+PD/pVG9WemIKJnpna7Vc9/XM+HZxzkz1O1s53o56AXQ==&cssminify=yes' type='text/css' media='all' />

</head>

<body class="home blog custom-background wp-theme-pubsuits customizer-styles-applied single-author no-footer-sidebar jetpack-reblog-enabled custom-colors">
	<div id="page" class="hfeed site">

		<header id="masthead" class="site-header" role="banner">
			
			<a class="home-link" href="https://alana-lorens.com/" title="Alana Lorens, author" rel="home">
				<h1 class="site-title">Alana Lorens, author</h1>
				<h2 class="site-description">Romance, adventure, danger and suspense</h2>
			</a><!-- #navbar .header-navigation -->

			<div id="navbar" class="header-navigation">

				<nav id="site-navigation" class="navigation main-navigation" role="navigation">
					<h3 class="menu-toggle">Menu</h3>
					<div class="menu-primary-container"><ul id="menu-primary" class="nav-menu"><li id="menu-item-8" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-8"><a href="/" aria-current="page">Home</a></li>
<li id="menu-item-32" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-32"><a href="https://alana-lorens.com/the-pittsburgh-lady-lawyers/">The Pittsburgh Lady Lawyers</a></li>
<li id="menu-item-31" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31"><a href="https://alana-lorens.com/looking-for-something-good-in-a-smaller-package/">More love stories! Smaller packages!</a></li>
<li id="menu-item-9" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9"><a href="https://alana-lorens.com/about/">About</a></li>
<li id="menu-item-70" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-70"><a href="https://alana-lorens.com/suspense/">Suspense!</a></li>
<li id="menu-item-306" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-306"><a href="https://alana-lorens.com/tender-misdemeanors/">Tender Misdemeanors</a></li>
<li id="menu-item-974" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-974"><a href="https://alana-lorens.com/a-rose-by-any-other-name/">A Rose By Any Other Name</a></li>
<li id="menu-item-1479" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1479"><a href="https://alana-lorens.com/prophecies-and-promises/">Prophecies and Promises</a></li>
<li id="menu-item-1529" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1529"><a href="https://alana-lorens.com/remnants-of-fire/">REMNANTS OF FIRE</a></li>
<li id="menu-item-2010" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2010"><a href="https://alana-lorens.com/cruel-charade/">CRUEL CHARADE</a></li>
<li id="menu-item-2291" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2291"><a href="https://alana-lorens.com/what-if/">What if&#8230;.?</a></li>
</ul></div>					<form role="search" method="get" class="search-form" action="https://alana-lorens.com/">
				<label>
					<span class="screen-reader-text">Search for:</span>
					<input type="search" class="search-field" placeholder="Search &hellip;" value="" name="s" />
				</label>
				<input type="submit" class="search-submit" value="Search" />
			</form>				</nav><!-- #site-navigation .navigation .main-navigation -->

			</div><!-- #navbar .header-navigation -->

		</header><!-- #masthead .site-header -->

		<div id="main" class="site-main">

	<div id="primary" class="content-area">

		<div id="content" class="site-content" role="main">
		
<article id="post-2349" class="post-2349 post type-post status-publish format-standard hentry category-author category-christian-writer category-contemporary-romance category-guest-post category-romantic-suspense category-suspense-novel tag-a-stalker-to-die-for tag-alana-lorens tag-author tag-books tag-christian tag-christian-romance tag-contemporary-romance tag-danger tag-faith tag-fiction tag-katy-eeten tag-love tag-romance tag-romantic-suspense tag-women tag-writing">

			<a href="https://alana-lorens.com/2026/04/12/an-online-date-goes-bad-and-we-mean-bad-will-help-come/" rel="bookmark">
	
			<header class="entry-header">

				
				<h1 class="entry-title">An online date goes bad&#8211;and we mean bad&#8211;will help&nbsp;come?</h1>
			</header><!-- .entry-header -->

												</a>
								<div class="entry-content">
					
<p class="wp-block-paragraph"><strong>PLEASE WELCOME KATY EETEN and her new release A STALKER TO DIE FOR .</strong></p>


<div class="wp-block-image">
<figure class="alignright size-large is-resized"><img data-attachment-id="2358" data-permalink="https://alana-lorens.com/2026/04/12/an-online-date-goes-bad-and-we-mean-bad-will-help-come/clipboard-with-film-reel-newspapers-and-movie-clapper-on-light/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2026/04/depositphotos_647265152_xl.jpg" data-orig-size="5760,3840" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;7.1&quot;,&quot;credit&quot;:&quot;Leonid Iastremskyi&quot;,&quot;camera&quot;:&quot;Canon EOS 5D Mark III&quot;,&quot;caption&quot;:&quot;Clipboard with film reel, newspapers and movie clapper on light background&quot;,&quot;created_timestamp&quot;:&quot;1677505997&quot;,&quot;copyright&quot;:&quot;pixel-shot.com (Leonid Yastremskiy)&quot;,&quot;focal_length&quot;:&quot;55&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.00625&quot;,&quot;title&quot;:&quot;Clipboard with film reel, newspapers and movie clapper on light&quot;,&quot;orientation&quot;:&quot;1&quot;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Clipboard with film reel, newspapers and movie clapper on light" data-image-description="" data-image-caption="&lt;p&gt;Clipboard with film reel, newspapers and movie clapper on light background&lt;/p&gt;
" data-large-file="https://alana-lorens.com/wp-content/uploads/2026/04/depositphotos_647265152_xl.jpg?w=620" width="1024" height="682" src="https://alana-lorens.com/wp-content/uploads/2026/04/depositphotos_647265152_xl.jpg?w=1024" alt="" class="wp-image-2358" style="aspect-ratio:1.501460564751704;width:336px;height:auto" srcset="https://alana-lorens.com/wp-content/uploads/2026/04/depositphotos_647265152_xl.jpg?w=1024 1024w, https://alana-lorens.com/wp-content/uploads/2026/04/depositphotos_647265152_xl.jpg?w=2048 2048w, https://alana-lorens.com/wp-content/uploads/2026/04/depositphotos_647265152_xl.jpg?w=150 150w, https://alana-lorens.com/wp-content/uploads/2026/04/depositphotos_647265152_xl.jpg?w=300 300w, https://alana-lorens.com/wp-content/uploads/2026/04/depositphotos_647265152_xl.jpg?w=768 768w, https://alana-lorens.com/wp-content/uploads/2026/04/depositphotos_647265152_xl.jpg?w=1440 1440w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
</div>


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



<p class="wp-block-paragraph"><strong>Katy:</strong> Before I became a published author, I had many unfinished manuscripts saved on my computer just waiting to be finished and fully edited. <em>A Stalker to Die For </em>was one such manuscript. After publishing five contemporary Christian romances, I finally found the motivation and confidence to revisit this romantic suspense (my first attempt at that specific genre). It took longer than I care to admit, but I finally finished it!</p>



<p class="wp-block-paragraph">For me, adding suspense to a romance is easier said than done. I admire those authors that can weave intense scenes and plot twists so naturally into their writing. To put someone on the edge of their seat through the written word alone takes incredible talent. I don’t claim to have that level of talent, but <em>A Stalker to Die For</em> takes readers through a variety of emotions while walking the line between romance, faith, and thrills. This book just released on April 10 and is available on Amazon. I hope you check it out and enjoy!</p>



<p class="wp-block-paragraph"><strong>OUR STORY:</strong></p>


<div class="wp-block-image">
<figure class="alignleft size-large"><img data-attachment-id="2351" data-permalink="https://alana-lorens.com/2026/04/12/an-online-date-goes-bad-and-we-mean-bad-will-help-come/astalkertodiefor_w13424_680/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2026/04/astalkertodiefor_w13424_680.jpg" data-orig-size="409,680" 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;1&quot;,&quot;alt&quot;:&quot;&quot;}" data-image-title="AStalkerToDieFor_w13424_680" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2026/04/astalkertodiefor_w13424_680.jpg?w=409" width="409" height="680" src="https://alana-lorens.com/wp-content/uploads/2026/04/astalkertodiefor_w13424_680.jpg?w=409" alt="" class="wp-image-2351" srcset="https://alana-lorens.com/wp-content/uploads/2026/04/astalkertodiefor_w13424_680.jpg 409w, https://alana-lorens.com/wp-content/uploads/2026/04/astalkertodiefor_w13424_680.jpg?w=90 90w, https://alana-lorens.com/wp-content/uploads/2026/04/astalkertodiefor_w13424_680.jpg?w=180 180w" sizes="(max-width: 409px) 100vw, 409px" /></figure>
</div>


<p class="wp-block-paragraph">Ashley Morris thought the worst part of online dating was awkward small talk. She was wrong.</p>



<p class="wp-block-paragraph">After one disastrous date, a man named Nick won&#8217;t take no for an answer. His calls and texts escalate into threats, break-ins, and a terror that shadows her every move. Desperate for safety, Ashley hires Jackson Russo— a talented painter with a kind heart and a protective streak— to renovate her home. But as their friendship deepens into something more, Nick&#8217;s obsession turns deadly.</p>



<p class="wp-block-paragraph">Caught between a stalker&#8217;s rage and a love she never expected, Ashley must trust God&#8217;s protection and her own instincts to survive. With Jackson by her side, she&#8217;ll fight for her life— and for a future worth living.</p>



<p class="wp-block-paragraph">A faith-filled romantic suspense with a slow-burn, closed-door romance and a guaranteed happily ever after. Perfect for fans of Lynette Eason, Dani Pettrey, and Dee Henderson.</p>



<p class="wp-block-paragraph"><strong>Excerpt:</strong></p>



<p class="wp-block-paragraph">She glanced over at him, and they exchanged closed-mouth smiles before she leaned her head on his shoulder. A second later, he leaned his head on top of hers. She almost melted in the bliss of the moment.</p>



<p class="wp-block-paragraph">This felt so right. And as much as she wanted to raise her head and kiss this incredible man, she wasn’t sure she’d be able to stop. Considering this was about as peaceful and cherished and loved as she’d ever felt—could ever hope to feel—she didn’t want to risk ruining it by muddying the innocence with a kiss. Though she certainly wouldn’t turn him away if he was offering up kisses. But she’d be patient. And grateful.</p>



<p class="wp-block-paragraph">He lifted his head a few moments later, causing her to do the same as she flashed him an inquisitive look. He extended his arm behind her shoulders and pulled her close. “I just thought this might be more comfortable.”</p>



<p class="wp-block-paragraph">As she leaned into his sturdy chest and closed her eyes, her dreamy sigh was audible. How had she gotten so blessed? <em>God, thank You.</em> As he stroked her upper arm, her cheeks radiated heat. Oh, how she wished time would stand still. Being with Jackson was the highlight of her weekend.</p>



<p class="wp-block-paragraph">“Sorry again that the drawing idea didn’t work out. Here I thought this would be the most romantic night ever.” He let out a nervous chuckle.</p>



<p class="wp-block-paragraph">Ashley’s eyes shot open at the absurdity of his words. Did he not consider their present situation romantic? “What do you mean?” She raised her head and turned to face him, their faces mere inches from each other. “This is the most romantic—”</p>



<p class="wp-block-paragraph">A single loud popping sound pierced the air.</p>



<p class="wp-block-paragraph">Ashley jumped. “What was that?”</p>



<p class="wp-block-paragraph">Jackson sat up straight. “I’m not sure, but it sounded like a gunshot.”</p>



<p class="wp-block-paragraph">A car’s engine revved.</p>



<p class="wp-block-paragraph">Ashley stiffened.</p>



<p class="has-text-align-center wp-block-paragraph">***</p>



<p class="wp-block-paragraph"><strong>Trailer:</strong> <a href="https://www.youtube.com/watch?v=N8agLq6kpUY">https://www.youtube.com/watch?v=N8agLq6kpUY</a></p>



<p class="wp-block-paragraph"><strong>Amazon link:</strong> <a href="https://www.amazon.com/Stalker-Die-Katy-Eeten-ebook/dp/B0GS7ND8LC/">https://www.amazon.com/Stalker-Die-Katy-Eeten-ebook/dp/B0GS7ND8LC/</a></p>



<p class="wp-block-paragraph"><strong>Social Media Links:</strong></p>



<p class="wp-block-paragraph">Facebook: <a href="https://www.facebook.com/KatyEeten/">https://www.facebook.com/KatyEeten/</a></p>



<p class="wp-block-paragraph">X: <a href="http://www.x.com/KatyEeten">http://www.x.com/KatyEeten</a></p>



<p class="wp-block-paragraph">Instagram: <a href="https://www.instagram.com/KatyEeten/">https://www.instagram.com/KatyEeten/</a></p>



<p class="wp-block-paragraph">Website: <a href="https://katyeeten.wordpress.com">https://katyeeten.wordpress.com</a></p>



<p class="wp-block-paragraph"><strong>About the Author:</strong></p>


<div class="wp-block-image">
<figure class="alignright size-large is-resized"><img data-attachment-id="2353" data-permalink="https://alana-lorens.com/2026/04/12/an-online-date-goes-bad-and-we-mean-bad-will-help-come/katy-eeten-headshot-2025/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2026/04/katy-eeten-headshot-2025.jpeg" data-orig-size="753,941" 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;1&quot;,&quot;alt&quot;:&quot;&quot;}" data-image-title="Katy Eeten headshot 2025" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2026/04/katy-eeten-headshot-2025.jpeg?w=620" width="753" height="941" src="https://alana-lorens.com/wp-content/uploads/2026/04/katy-eeten-headshot-2025.jpeg?w=753" alt="" class="wp-image-2353" style="width:397px;height:auto" srcset="https://alana-lorens.com/wp-content/uploads/2026/04/katy-eeten-headshot-2025.jpeg 753w, https://alana-lorens.com/wp-content/uploads/2026/04/katy-eeten-headshot-2025.jpeg?w=120 120w, https://alana-lorens.com/wp-content/uploads/2026/04/katy-eeten-headshot-2025.jpeg?w=240 240w" sizes="(max-width: 753px) 100vw, 753px" /></figure>
</div>


<p class="wp-block-paragraph">When she was a kid, Katy Eeten filled notebooks and binders with poems and short stories. As an adult, she turned that love for the written word into Christian fiction. Between contemporary Christian romance novels and short, sweet Christmas novellas, she loves the feeling of creating characters, scenes, and plots that readers will enjoy.</p>



<p class="wp-block-paragraph">She works full time in the corporate world, but she tries to find time for her passions—which include writing, reading, taking walks, playing board games, baking, and spending time with her family. She lives in southeast Wisconsin with her husband and their two teenage sons.</p>
									</div><!-- .entry-content -->
			
			<footer class="entry-meta">
				Posted in <a href="https://alana-lorens.com/category/author/" rel="category tag">author</a>, <a href="https://alana-lorens.com/category/christian-writer/" rel="category tag">Christian writer</a>, <a href="https://alana-lorens.com/category/contemporary-romance/" rel="category tag">contemporary romance</a>, <a href="https://alana-lorens.com/category/guest-post/" rel="category tag">guest post</a>, <a href="https://alana-lorens.com/category/romantic-suspense/" rel="category tag">romantic suspense</a>, <a href="https://alana-lorens.com/category/suspense-novel/" rel="category tag">suspense novel</a> and tagged <a href="https://alana-lorens.com/tag/a-stalker-to-die-for/" rel="tag">A Stalker to Die For</a>, <a href="https://alana-lorens.com/tag/alana-lorens/" rel="tag">Alana Lorens</a>, <a href="https://alana-lorens.com/tag/author/" rel="tag">author</a>, <a href="https://alana-lorens.com/tag/books/" rel="tag">books</a>, <a href="https://alana-lorens.com/tag/christian/" rel="tag">Christian</a>, <a href="https://alana-lorens.com/tag/christian-romance/" rel="tag">Christian romance</a>, <a href="https://alana-lorens.com/tag/contemporary-romance/" rel="tag">contemporary romance</a>, <a href="https://alana-lorens.com/tag/danger/" rel="tag">danger</a>, <a href="https://alana-lorens.com/tag/faith/" rel="tag">faith</a>, <a href="https://alana-lorens.com/tag/fiction/" rel="tag">fiction</a>, <a href="https://alana-lorens.com/tag/katy-eeten/" rel="tag">Katy Eeten</a>, <a href="https://alana-lorens.com/tag/love/" rel="tag">love</a>, <a href="https://alana-lorens.com/tag/romance/" rel="tag">romance</a>, <a href="https://alana-lorens.com/tag/romantic-suspense/" rel="tag">romantic suspense</a>, <a href="https://alana-lorens.com/tag/women/" rel="tag">women</a>, <a href="https://alana-lorens.com/tag/writing/" rel="tag">writing</a><span class="on-date"> on <a href="https://alana-lorens.com/2026/04/12/an-online-date-goes-bad-and-we-mean-bad-will-help-come/" title="10:50 pm" rel="bookmark"><time class="entry-date" datetime="2026-04-12T22:50:44-04:00">April 12, 2026</time></a></span><span class="by-author"> by <span class="author vcard"><a class="url fn n" href="https://alana-lorens.com/author/awalkabout/" title="View all posts by Babs Mountjoy" rel="author">Babs Mountjoy</a></span></span>.
									<a href="https://alana-lorens.com/2026/04/12/an-online-date-goes-bad-and-we-mean-bad-will-help-come/#comments">2 Comments</a>				
							</footer><!-- .entry-meta -->


</article><!-- #post-# .#post-class-# -->

<article id="post-2335" class="post-2335 post type-post status-publish format-standard hentry category-author category-erotic-romance category-guest-post category-romance-addicts category-uncategorized tag-alana-lorens tag-author tag-book-review tag-book-reviews tag-books tag-chef tag-contemporary-romance tag-cooking tag-erotic-romance tag-fiction tag-hautecuisine-frenchcuisine-romcom-sexychef-asianheroine-multicultural-bdsm-sexynerd-aphrodisiac-contemporaryromance-eroticromance-sanfrancisco-publicsex-femdom tag-lisabet-sarai tag-love tag-romance tag-spicy-story tag-women tag-writing">

			<a href="https://alana-lorens.com/2026/02/14/ancient-chinese-secrets-lead-to-spice-in-the-kitchen/" rel="bookmark">
	
			<header class="entry-header">

				
				<h1 class="entry-title">Ancient Chinese secrets lead to spice in the&nbsp;kitchen</h1>
			</header><!-- .entry-header -->

												</a>
								<div class="entry-content">
					
<p class="wp-block-paragraph"><strong><em>In Praise of Nerds</em></strong>    by LISABET SARAI</p>



<p class="wp-block-paragraph">Since I joined the romance authors community, I&#8217;ve heard a lot about alpha heroes. Rugged but handsome features, broad shoulders, chiseled pectorals, powerful thighs that naturally invite musings about what lies sheltered between them – attributes like these apparently constitute the romance ideal. Our hero should also be physically strong, courageous, and generally the dominant type, though some sensitivity or a shameful secret will not be taken amiss. It helps, apparently, if the guy is also wealthy, suave and well-dressed.</p>



<p class="wp-block-paragraph">Well, I don&#8217;t completely buy it. I mean, a nice bod and a pretty face are not to be sneezed at. But they&#8217;re not enough. Call me perverse, but I find intelligence to be the most essential aspect of a sexy hero. Furthermore, I&#8217;m willing to accept less than stellar physical qualities if my hero is a clever, imaginative, horny genius who can figure out how to get his heroine out of sticky situations and who understands what truly turns her on.</p>



<p class="wp-block-paragraph">So I&#8217;ve got a thing for nerds. I was hopelessly in love with Mr. Spock. Near the top of my sexy, romantic movie list is &#8220;Earth Girls are Easy&#8221;, featuring gangly, geeky Jeff Goldblum as a brilliant alien. It&#8217;s fairly easy to understand why I feel this way. Growing up, I was the egghead, the bookworm, the too-smart girl whom everyone made fun of. The only guys who could deal with me were the ones who were at least as smart as I was. They weren&#8217;t on the football squad; they weren&#8217;t voted Best Looking or Most Popular. But they had that something that could start my motors. It was intoxicating, yes, arousing, to have a conversation with some of these guys, especially when I got out of high school and into college. We understood each other, and I began to discover that despite their definite nerdish qualities, they were enthusiastic and innovative when it came to sex.</p>



<p class="wp-block-paragraph">Actually, research has shown that in defiance of their public image as socially challenged losers, nerds are more successful than the general population in finding mates, staying with them, and producing children. Of course, that is not necessarily going to endear them to romance readers, but it&#8217;s something to consider.</p>



<p class="wp-block-paragraph">Not all the heroes that I create are nerds, but many have some nerdish qualities. Harry Sanbourne in <em>Her Secret Ingredient</em> is a classic example. He’s fashion-challenged, with unruly, overlong hair. Seriously near-sighted, he wears clunky, dark-framed glasses. He’s easy going and informal, without a sophisticated bone in his body – a body that looks pretty ordinary in his baggy jeans and out-of-shape sweaters.</p>



<p class="wp-block-paragraph">Once those clothes are off, though, Harry turns out to be an exceptionally talented and considerate lover. And unlike the suave and impeccably groomed master chef (and apparent alpha), Etienne Duvalier, Harry has an intuitive understanding of what Emily needs.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><img data-attachment-id="2345" data-permalink="https://alana-lorens.com/2026/02/14/ancient-chinese-secrets-lead-to-spice-in-the-kitchen/amazing-succulent-floral-botanical-flower-watercolor-isolated-background-illustration-set/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2026/02/depositphotos_228691300_xl.jpg" data-orig-size="3500,3500" 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;Amazing succulent. Floral botanical flower. Watercolor background illustration set. Aquarelle hand drawing isolated succulent.&quot;,&quot;created_timestamp&quot;:&quot;1477487330&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;Amazing succulent. Floral botanical flower. Watercolor isolated background illustration set.&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Amazing succulent. Floral botanical flower. Watercolor isolated background illustration set." data-image-description="" data-image-caption="&lt;p&gt;Amazing succulent. Floral botanical flower. Watercolor background illustration set. Aquarelle hand drawing isolated succulent.&lt;/p&gt;
" data-large-file="https://alana-lorens.com/wp-content/uploads/2026/02/depositphotos_228691300_xl.jpg?w=620" loading="lazy" width="1024" height="1024" src="https://alana-lorens.com/wp-content/uploads/2026/02/depositphotos_228691300_xl.jpg?w=1024" alt="" class="wp-image-2345" style="width:108px;height:auto" srcset="https://alana-lorens.com/wp-content/uploads/2026/02/depositphotos_228691300_xl.jpg?w=1024 1024w, https://alana-lorens.com/wp-content/uploads/2026/02/depositphotos_228691300_xl.jpg?w=2048 2048w, https://alana-lorens.com/wp-content/uploads/2026/02/depositphotos_228691300_xl.jpg?w=150 150w, https://alana-lorens.com/wp-content/uploads/2026/02/depositphotos_228691300_xl.jpg?w=300 300w, https://alana-lorens.com/wp-content/uploads/2026/02/depositphotos_228691300_xl.jpg?w=768 768w, https://alana-lorens.com/wp-content/uploads/2026/02/depositphotos_228691300_xl.jpg?w=1440 1440w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
</div>

<div class="wp-block-image">
<figure class="alignleft size-large is-resized"><img data-attachment-id="2339" data-permalink="https://alana-lorens.com/2026/02/14/ancient-chinese-secrets-lead-to-spice-in-the-kitchen/hersecretingredientcover_400/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientcover_400.jpg" data-orig-size="400,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="HerSecretIngredientCover_400" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientcover_400.jpg?w=400" loading="lazy" width="400" height="600" src="https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientcover_400.jpg?w=400" alt="" class="wp-image-2339" style="width:373px;height:auto" srcset="https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientcover_400.jpg 400w, https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientcover_400.jpg?w=100 100w, https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientcover_400.jpg?w=200 200w" sizes="(max-width: 400px) 100vw, 400px" /></figure>
</div>


<p class="wp-block-paragraph"><em><strong>Stir in a pinch to stir up his passion.</strong></em></p>



<p class="wp-block-paragraph"><em>When the Tastes of France food channel offers Mei Lee “Emily” Wong a series of guest spots, she jumps at the opportunity to take her culinary career to a whole new level. Ultimately, she wants a show of her own, but first she has to prove herself to Michelin-starred network founder and effective dictator, Etienne Duvalier. A legend in the world of classic French cuisine as well as a domineering perfectionist, Etienne is skeptical about the culinary abilities of a woman from Hong Kong. To make things more difficult, the master chef is also so gorgeous that Emily can’t help being attracted to him.</em></p>



<p class="wp-block-paragraph"><em>Emily tries to solve both problems by spiking her luscious profiteroles with an ancient Oriental aphrodisiac. Unfortunately, Harry Sanborne, the low-key, bespectacled producer for Emily’s show, samples the delicacies she intends for Etienne’s consumption. His powerful reaction to her secret ingredient comes as a pleasant surprise to them both. Harry turns out to be far more impressive in bed than on the set. However, he can’t do nearly as much to advance her ambitions as Etienne. Emily tries once more to tempt the exacting Monsieur Duvalier with her special cooking as well as her feminine charms. The outrageous results threaten to end her TV career forever—until Harry steps in to save her reputation and claim her heart.</em><strong><br></strong></p>



<p class="wp-block-paragraph"><strong>Buy Links</strong></p>



<p class="wp-block-paragraph">Amazon US – <a href="https://www.amazon.com/dp/B0G6X5D959">https://www.amazon.com/dp/B0G6X5D959</a></p>



<p class="wp-block-paragraph">Amazon UK – <a href="https://www.amazon.co.uk/dp/B0G6X5D959">https://www.amazon.co.uk/dp/B0G6X5D959</a></p>



<p class="wp-block-paragraph">Smashwords – <a href="https://www.smashwords.com/books/view/1923881">https://www.smashwords.com/books/view/1923881</a></p>



<p class="wp-block-paragraph">Barnes and Noble – <a href="https://barnesandnoble.com/w/her-secret-ingredient-lisabet-sarai" rel="nofollow">https://barnesandnoble.com/w/her-secret-ingredient-lisabet-sarai</a></p>



<p class="wp-block-paragraph"><a href="https://barnesandnoble.com/w/her-secret-ingredient-lisabet-sarai/1118070571">/1118070571</a></p>



<p class="wp-block-paragraph">Kobo – <a href="https://www.kobo.com/us/en/ebook/her-secret-ingredient-3">https://www.kobo.com/us/en/ebook/her-secret-ingredient-3</a></p>



<p class="wp-block-paragraph">Apple Books – <a href="https://books.apple.com/us/book/her-secret-ingredient/id6756538064">https://books.apple.com/us/book/her-secret-ingredient/id6756538064</a></p>



<p class="wp-block-paragraph">Universal Book Link – <a href="https://books2read.com/u/mdkrAw">https://books2read.com/u/mdkrAw</a></p>



<p class="wp-block-paragraph">Add on Goodreads – <a href="https://www.goodreads.com/book/show/245242009-her-secret-ingredient">https://www.goodreads.com/book/show/245242009-her-secret-ingredient</a></p>



<p class="wp-block-paragraph">Add on BookBub – <a href="https://www.bookbub.com/books/her-secret-ingredient-by-lisabet-sarai-2025-12-21">https://www.bookbub.com/books/her-secret-ingredient-by-lisabet-sarai-2025-12-21</a></p>



<p class="wp-block-paragraph"><strong>Review Quotes</strong></p>



<p class="wp-block-paragraph"><strong>Her Secret Ingredient</strong> was a great short story. I loved the unique plot, the realistically drawn characters and the writing style. ~<em>Lucy Felthouse, Goodreads</em></p>



<p class="wp-block-paragraph">I&#8217;ve always been a sucker for books set in the kitchen, and even as outlandishly over the top as this one is, it was a lot of fun…lighthearted and silly and sinfully sexy.<em> ~ Steph, The Romance Reviews</em></p>



<p class="wp-block-paragraph"><strong>EXCERPT:</strong></p>



<p class="wp-block-paragraph">“Here we are. Try a couple of these and let me know what you think.” I positioned the platter so that the augmented tidbits were within Etienne’s easy reach. He was sitting on one of the stools in front of the counter. His thigh muscles strained against the black leather of his pants. A lock of hair had overcome the gel to settle on his high forehead. His eyes sparkled, ocean-blue in this light. He looked good enough to eat—highly appropriate for a cooking show.</p>



<p class="wp-block-paragraph">“Thank you. They look exquisite.” He positively oozed charm as he picked up a pastry round with his finger and thumb and placed it upon his tongue. I imagined all the women watching the show, eyes glued to his every sensual move.</p>



<p class="wp-block-paragraph">“Oh, Mei Lee! These taste even better than they look!” He sipped his wine, then popped another <em>pissaladière </em>into his mouth and chewed with obvious enthusiasm.</p>



<p class="wp-block-paragraph">“You’ll put the recipe on the channel website, won’t you?” He turned to the camera. “Ah, <em>mes amis</em>, this simple little dish provides a glorious mixture of flavors. And quite a straightforward process, I guarantee. Any one of you can make these in your own kitchen.”</p>



<p class="wp-block-paragraph">I helped myself to a <em>pissaladière </em>of my own, carefully choosing from the unadulterated side of the tray. They <em>were</em> good—the pastry light and crisp as spun cloud, the topping complex and savory, thyme, garlic and pepper lingering on the tongue long after swallowing. I took a second <em>hors d’oeuvres</em>. Etienne gobbled down two more, licking his long, elegant fingers after each one. The audience must be dying, watching that pink tongue clean away every crumb of pastry, every fragment of olive. I nursed my burgundy and smiled for the camera as he consumed a fifth <em>pissaladière</em>. Low-level lust hummed through me, too, though I’d been careful this time to avoid ingesting any of the aphrodisiac.</p>



<p class="wp-block-paragraph">He wiped his forehead with his sleeve and drained his wine glass. “Ms. Wong—” he began. A wild light blazed in his face. “I want to ask your pardon—I want—oh, please…” The smooth, urbane voice sounded confused, ravaged by uncertainty. What was going on?</p>



<p class="wp-block-paragraph">Etienne slipped from the stool to the floor and knelt at my feet. The next thing I knew, he was pressing his lips to the gilt leather of my high-heeled shoes. “Ms. Wong—Mistress Wong—please, let me serve you…”</p>



<p class="wp-block-paragraph">“Etienne? Monsieur Duvalier? What are you doing?”</p>



<p class="wp-block-paragraph">He trailed kisses up the inside of my ankle. “I adore you, Mistress.”</p>



<p class="wp-block-paragraph">“Etienne!” I snatched my foot away in alarm. He gazed up at me, a mix of disappointment and reverence shining in his face. “Stand up. Remember we’re on camera,” I added, <em>sotto voce</em>.</p>



<p class="wp-block-paragraph">“Yes, yes, but that doesn’t matter now,” he continued in the same crazy vein, though he obeyed my order and rose to his feet. “I am your willing slave. Let me please you, Mistress. Let me suckle your sweet, hard nipples. Raise your skirt and allow me to worship you with my mouth, the way you deserve…”</p>



<p class="wp-block-paragraph">“Ssh!” I hissed. “Do you want to get us thrown in jail?” I peered through the glare of the lights, trying to signal to someone to stop the transmission. There was no flurry of activity there, however. No one seemed to notice anything out of the ordinary.</p>



<p class="wp-block-paragraph">“I don’t care, as long as you are satisfied.” He paused a moment, then unknotted his scarlet cravat and handed it to me. He held out his wrists. “Bind me, Mistress, if you wish. Torture me. I’ll bear any amount of pain for you. Test me—test my devotion.”</p>



<p class="wp-block-paragraph">He had the same rich voice as before, the same handsome features, the same lithe, muscular body—but this was a different man entirely. I searched his face, yearning for the arrogant, self-involved chef who’d been bossing me around half an hour before.</p>



<p class="wp-block-paragraph">There was no trace of him. Instead, I had to deal with this—this eager, self-effacing slave boy.</p>



<p class="wp-block-paragraph">I’d created a monster.&nbsp;&nbsp;</p>



<p class="wp-block-paragraph"><strong>About Lisabet</strong></p>



<p class="wp-block-paragraph">Lisabet Sarai became addicted to words at an early age. She began reading when she was four. She wrote her first story at five years old and her first poem at seven. Since then, she has written plays, tutorials, scholarly articles, marketing brochures, software specifications, self-help books, press releases, a five-hundred page dissertation, and lots of erotica and erotic romance – over one hundred titles, and counting, in nearly every sub-genre—paranormal, scifi, ménage, BDSM, LGBTQ, and more. Regardless of the genre, every one of her stories illustrates her motto: Imagination is the ultimate aphrodisiac.</p>



<p class="wp-block-paragraph">You’ll find information and excerpts from all Lisabet’s books on her website (<a href="http://www.lisabetsarai.com/books.html">http://www.lisabetsarai.com/books.html</a>), along with more than fifty free stories and lots more. At her blog Beyond Romance (<a href="http://lisabetsarai.blogspot.com/">http://lisabetsarai.blogspot.com</a>), she shares her philosophy and her news and hosts lots of other great authors. She’s also on <a href="http://www.goodreads.com/author/show/83387.Lisabet_Sarai">Goodreads</a>, <a href="https://www.bookbub.com/authors/lisabet-sarai">BookBub</a> and <a href="https://www.twitter.com/lisabetsarai">Twitter</a>. Join her VIP email list here: <a href="https://btn.ymlp.com/xgjjhmhugmgh">https://btn.ymlp.com/xgjjhmhugmgh</a></p>



<figure class="wp-block-image size-large"><img data-attachment-id="2342" data-permalink="https://alana-lorens.com/2026/02/14/ancient-chinese-secrets-lead-to-spice-in-the-kitchen/hersecretingredientbanner/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientbanner.jpg" data-orig-size="1199,461" 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="HerSecretIngredientBanner" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientbanner.jpg?w=620" loading="lazy" width="1024" height="393" src="https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientbanner.jpg?w=1024" alt="" class="wp-image-2342" srcset="https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientbanner.jpg?w=1024 1024w, https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientbanner.jpg?w=150 150w, https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientbanner.jpg?w=300 300w, https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientbanner.jpg?w=768 768w, https://alana-lorens.com/wp-content/uploads/2026/02/hersecretingredientbanner.jpg 1199w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
									</div><!-- .entry-content -->
			
			<footer class="entry-meta">
				Posted in <a href="https://alana-lorens.com/category/author/" rel="category tag">author</a>, <a href="https://alana-lorens.com/category/erotic-romance/" rel="category tag">erotic romance</a>, <a href="https://alana-lorens.com/category/guest-post/" rel="category tag">guest post</a>, <a href="https://alana-lorens.com/category/romance-addicts/" rel="category tag">romance addicts</a>, <a href="https://alana-lorens.com/category/uncategorized/" rel="category tag">Uncategorized</a> and tagged <a href="https://alana-lorens.com/tag/alana-lorens/" rel="tag">Alana Lorens</a>, <a href="https://alana-lorens.com/tag/author/" rel="tag">author</a>, <a href="https://alana-lorens.com/tag/book-review/" rel="tag">book-review</a>, <a href="https://alana-lorens.com/tag/book-reviews/" rel="tag">book-reviews</a>, <a href="https://alana-lorens.com/tag/books/" rel="tag">books</a>, <a href="https://alana-lorens.com/tag/chef/" rel="tag">chef</a>, <a href="https://alana-lorens.com/tag/contemporary-romance/" rel="tag">contemporary romance</a>, <a href="https://alana-lorens.com/tag/cooking/" rel="tag">cooking</a>, <a href="https://alana-lorens.com/tag/erotic-romance/" rel="tag">erotic romance</a>, <a href="https://alana-lorens.com/tag/fiction/" rel="tag">fiction</a>, <a href="https://alana-lorens.com/tag/hautecuisine-frenchcuisine-romcom-sexychef-asianheroine-multicultural-bdsm-sexynerd-aphrodisiac-contemporaryromance-eroticromance-sanfrancisco-publicsex-femdom/" rel="tag">hautecuisine-frenchcuisine-romcom-sexychef-asianheroine-multicultural-bdsm-sexynerd-aphrodisiac-contemporaryromance-eroticromance-sanfrancisco-publicsex-femdom</a>, <a href="https://alana-lorens.com/tag/lisabet-sarai/" rel="tag">Lisabet Sarai</a>, <a href="https://alana-lorens.com/tag/love/" rel="tag">love</a>, <a href="https://alana-lorens.com/tag/romance/" rel="tag">romance</a>, <a href="https://alana-lorens.com/tag/spicy-story/" rel="tag">spicy story</a>, <a href="https://alana-lorens.com/tag/women/" rel="tag">women</a>, <a href="https://alana-lorens.com/tag/writing/" rel="tag">writing</a><span class="on-date"> on <a href="https://alana-lorens.com/2026/02/14/ancient-chinese-secrets-lead-to-spice-in-the-kitchen/" title="7:09 pm" rel="bookmark"><time class="entry-date" datetime="2026-02-14T19:09:11-05:00">February 14, 2026</time></a></span><span class="by-author"> by <span class="author vcard"><a class="url fn n" href="https://alana-lorens.com/author/awalkabout/" title="View all posts by Babs Mountjoy" rel="author">Babs Mountjoy</a></span></span>.
									<a href="https://alana-lorens.com/2026/02/14/ancient-chinese-secrets-lead-to-spice-in-the-kitchen/#comments">3 Comments</a>				
							</footer><!-- .entry-meta -->


</article><!-- #post-# .#post-class-# -->

<article id="post-2321" class="post-2321 post type-post status-publish format-standard hentry category-anthology category-author category-guest-post category-true-story category-uncategorized category-women tag-alana-lorens tag-anne-fowler tag-author tag-book-review tag-book-reviews tag-books tag-fiction tag-reading tag-true-stories tag-wise-women tag-women tag-writing">

			<a href="https://alana-lorens.com/2026/01/11/learning-from-those-whove-lived/" rel="bookmark">
	
			<header class="entry-header">

				
				<h1 class="entry-title">Learning from those who&#8217;ve&nbsp;lived</h1>
			</header><!-- .entry-header -->

												</a>
								<div class="entry-content">
					
<p class="wp-block-paragraph">WELCOME GUEST AUTHOR ANNE FOWLER!</p>



<figure class="wp-block-image size-large"><img data-attachment-id="2322" data-permalink="https://alana-lorens.com/2026/01/11/learning-from-those-whove-lived/the-cover-of-ttwc/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2026/01/the-cover-of-ttwc.jpg" data-orig-size="3912,2775" 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="The Cover of TTWC" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2026/01/the-cover-of-ttwc.jpg?w=620" loading="lazy" width="1024" height="726" src="https://alana-lorens.com/wp-content/uploads/2026/01/the-cover-of-ttwc.jpg?w=1024" alt="" class="wp-image-2322" srcset="https://alana-lorens.com/wp-content/uploads/2026/01/the-cover-of-ttwc.jpg?w=1024 1024w, https://alana-lorens.com/wp-content/uploads/2026/01/the-cover-of-ttwc.jpg?w=2048 2048w, https://alana-lorens.com/wp-content/uploads/2026/01/the-cover-of-ttwc.jpg?w=150 150w, https://alana-lorens.com/wp-content/uploads/2026/01/the-cover-of-ttwc.jpg?w=300 300w, https://alana-lorens.com/wp-content/uploads/2026/01/the-cover-of-ttwc.jpg?w=768 768w, https://alana-lorens.com/wp-content/uploads/2026/01/the-cover-of-ttwc.jpg?w=1440 1440w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">About the book:</p>



<p class="wp-block-paragraph">These 55 stories share the collective wisdom of these women learned from life. Ms. Fowler recommends this book for book clubs, and in senior living facilities, and is willing to do ZOOM meetings with the clubs to discuss all the delightful tales.</p>



<p class="wp-block-paragraph"><strong>ABOUT THE EDITOR:</strong></p>


<div class="wp-block-image">
<figure class="alignleft size-large"><img data-attachment-id="2328" data-permalink="https://alana-lorens.com/2026/01/11/learning-from-those-whove-lived/image-9/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2026/01/image.png" data-orig-size="300,359" 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="image" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2026/01/image.png?w=300" loading="lazy" width="300" height="359" src="https://alana-lorens.com/wp-content/uploads/2026/01/image.png?w=300" alt="" class="wp-image-2328" srcset="https://alana-lorens.com/wp-content/uploads/2026/01/image.png 300w, https://alana-lorens.com/wp-content/uploads/2026/01/image.png?w=125 125w, https://alana-lorens.com/wp-content/uploads/2026/01/image.png?w=251 251w" sizes="(max-width: 300px) 100vw, 300px" /></figure>
</div>


<p class="wp-block-paragraph">Anne Fowler, only child of Audrey and Stewart Hamilton, was raised in Toronto where she attended Leaside High School and Toronto Western Hospital School of Nursing. In 1962 American Airlines beckoned her to Dallas, Texas and life in the sky as a flight attendant. Twice divorced, Anne first married a young minister from Louisiana and then long-time best friend Dr. Bob Fowler of Toronto. They raised a daughter and son who later produced a grandson and granddaughter. In 2001, Anne retired, closed her company, Hamilton Enterprises, and left behind a thirty year career in Human Resources. She relocated to El Progreso, Honduras to volunteer at a clinic where care is provided for patients who lack the funds to be treated elsewhere. During this time, Anne developed the Visiting Doctor program for international ophthalmologists, started the Healthy Living Education project in local elementary schools, and helped with a variety of clinic and community activities. In 2006, after purchasing property in the small north coast village of El Porvenir, she built Hamilton Benest House, a home providing accommodation for visiting dentists, doctors, teachers, and other volunteers. Her major program in 2021 is Phase Two of the Healthy Living Program. This annual dental program, conducted by two Canadian dental teams, provides dental care for over 1,000 elementary school students in the area. Anne’s programs continue to thrive and she has continued to develop community initiatives designed to improve the lives of Hondurans. Anne divides her year between El Porvenir and her Haliburton cottage north of Toronto. <a href="https://anne.honduranhope.net/">https://anne.honduranhope.net/</a></p>



<p class="wp-block-paragraph"><strong>REVIEWS FOR THE TRUTHS WE’VE CARRIED</strong>:</p>



<p class="wp-block-paragraph"> I just finished this book.  The stories were great, happening to both ordinary and extraordinary folks and often occurring around world or national events and involving brushes with famous people. I read all of the stories in one sitting on a very cold day in the Midwest, a good day to snuggle up and devour a book.</p>



<p class="wp-block-paragraph">The Truths We&#8217;ve Carried is the perfect book for readers who say &#8220;I&#8217;m too busy to read.&#8221; A fascinating collection of true stories recounted by the women who experienced the events. However, I dare you to stop reading after one or two of them! One evening I picked up the book and started reading, thinking, I&#8217;ll just read a couple of stories. It was after midnight when I finished the book! Well done ladies.&#8221;</p>



<p class="wp-block-paragraph">I read The Truths We’ve Carried&#8230;some tears, some smiles&#8230;and have talked about the book with others. A wonderful idea! An outlet for women to vent.”</p>
									</div><!-- .entry-content -->
			
			<footer class="entry-meta">
				Posted in <a href="https://alana-lorens.com/category/anthology/" rel="category tag">anthology</a>, <a href="https://alana-lorens.com/category/author/" rel="category tag">author</a>, <a href="https://alana-lorens.com/category/guest-post/" rel="category tag">guest post</a>, <a href="https://alana-lorens.com/category/true-story/" rel="category tag">true story</a>, <a href="https://alana-lorens.com/category/uncategorized/" rel="category tag">Uncategorized</a>, <a href="https://alana-lorens.com/category/women/" rel="category tag">women</a> and tagged <a href="https://alana-lorens.com/tag/alana-lorens/" rel="tag">Alana Lorens</a>, <a href="https://alana-lorens.com/tag/anne-fowler/" rel="tag">Anne Fowler</a>, <a href="https://alana-lorens.com/tag/author/" rel="tag">author</a>, <a href="https://alana-lorens.com/tag/book-review/" rel="tag">book-review</a>, <a href="https://alana-lorens.com/tag/book-reviews/" rel="tag">book-reviews</a>, <a href="https://alana-lorens.com/tag/books/" rel="tag">books</a>, <a href="https://alana-lorens.com/tag/fiction/" rel="tag">fiction</a>, <a href="https://alana-lorens.com/tag/reading/" rel="tag">reading</a>, <a href="https://alana-lorens.com/tag/true-stories/" rel="tag">true stories</a>, <a href="https://alana-lorens.com/tag/wise-women/" rel="tag">wise women</a>, <a href="https://alana-lorens.com/tag/women/" rel="tag">women</a>, <a href="https://alana-lorens.com/tag/writing/" rel="tag">writing</a><span class="on-date"> on <a href="https://alana-lorens.com/2026/01/11/learning-from-those-whove-lived/" title="2:10 pm" rel="bookmark"><time class="entry-date" datetime="2026-01-11T14:10:41-05:00">January 11, 2026</time></a></span><span class="by-author"> by <span class="author vcard"><a class="url fn n" href="https://alana-lorens.com/author/awalkabout/" title="View all posts by Babs Mountjoy" rel="author">Babs Mountjoy</a></span></span>.
				
							</footer><!-- .entry-meta -->


</article><!-- #post-# .#post-class-# -->

<article id="post-2308" class="post-2308 post type-post status-publish format-standard hentry category-author category-book-series category-guest-post category-mystery category-the-wild-rose-press tag-alana-lorens tag-author tag-books tag-burro-race tag-colorado tag-danger tag-meg-benjamin tag-mystery tag-tomato-jam tag-women tag-writing">

			<a href="https://alana-lorens.com/2025/10/19/tomatoes-jam-and-burros/" rel="bookmark">
	
			<header class="entry-header">

				
				<h1 class="entry-title">Tomatoes, jam&#8230;and Burros??</h1>
			</header><!-- .entry-header -->

												</a>
								<div class="entry-content">
					
<p class="wp-block-paragraph"><strong>Welcome guest author MEG BENJAMIN!</strong></p>



<p class="wp-block-paragraph"><strong>Burros. Why Did It Have To Be Burros?</strong></p>


<div class="wp-block-image">
<figure class="alignleft size-large"><img data-attachment-id="2315" data-permalink="https://alana-lorens.com/2025/10/19/tomatoes-jam-and-burros/burro/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2025/10/burro.jpg" data-orig-size="265,190" 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="burro" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2025/10/burro.jpg?w=265" loading="lazy" width="265" height="190" src="https://alana-lorens.com/wp-content/uploads/2025/10/burro.jpg?w=265" alt="" class="wp-image-2315" srcset="https://alana-lorens.com/wp-content/uploads/2025/10/burro.jpg 265w, https://alana-lorens.com/wp-content/uploads/2025/10/burro.jpg?w=150 150w" sizes="(max-width: 265px) 100vw, 265px" /><figcaption class="wp-element-caption"><em>photo from The Colorado Sun</em></figcaption></figure>
</div>


<p class="wp-block-paragraph">Burro racing is the official <a href="https://en.wikipedia.org/wiki/Pack_burro_racing">Colorado Heritage Sport</a>. Right now you may be envisioning a bunch of tiny jockeys riding tiny burros around a dirt track, but if so, you’re wrong. Burro racing is meant to recreate the frontier experience of prospectors and burros running down the trail to the nearest town to register a gold claim before another prospector could beat them to it. The race courses are long (29 miles for the Fairplay race) and rugged (up to 8600 feet for the Buena Vista race and 13,000 feet over Mosquito Pass for Fairplay). According to those who take part, the burros have a better time racing than their human companions since they like running and often enjoy the company of other burros. People, on the other hand, may fall apart.</p>



<p class="has-text-align-left wp-block-paragraph">As soon as I read about burro racing and saw the videos on YouTube, I knew I had to include it in my Luscious Delights cozy mystery series. Thus my newest Luscious Delights mystery, <em>The Tomato Jam Murder,</em> includes all the info on the sport and the people who run it. My heroine, Roxy Constantine, is a jam maker by trade, but she lives in the Colorado mountains in prime burro racing country. Roxy does a couple of training runs with a friend, but on the second of those runs, she stumbles across a body and a fugitive burro. </p>



<p class="wp-block-paragraph"><strong>Here’s a quick excerpt:</strong></p>



<p class="wp-block-paragraph">“Hello?” I called again.</p>



<p class="wp-block-paragraph">“Hello yourself,” a male voice called. I put a hand to my hammering heart then stepped back and peered up the trail. Silas and his burro were on the switchback above us. “What’s going on?” he asked.</p>



<p class="wp-block-paragraph">“I don’t know. I found this little guy wandering around, and I’m trying to find his handler. I think there might be somebody in this clump of trees.”</p>



<p class="wp-block-paragraph">“Okay,” Silas said when he was level with me. “Give me the lead rope. I’ll hold onto him while you see if his owner is around.”</p>



<p class="wp-block-paragraph">I handed over the rope gratefully enough and stepped into the evergreen grove. The dense thatch of branches blotted out a lot of the light.</p>



<p class="wp-block-paragraph">A man was lying face down in the center of the grove. On the trail, I’d seen the bright red of the bandanna he had knotted around his neck. “Um…hi?” I said, tentatively. When he didn’t move, or give any sign that he’d heard me, I stepped closer. “Mister? Are you okay?”</p>



<p class="wp-block-paragraph">Something about the stillness of that body made my throat tighten. I’d seen a few dead bodies in my time, but most of them had been clearly and thoroughly dead. This guy was just lying there. Very quiet.</p>



<p class="wp-block-paragraph"><em>You’ve got to check. You know that.</em> I did know it, but I didn’t like it. I leaned forward and put my hand on his shoulder. I felt the cool dead flesh through his thin cotton shirt. Yanking my hand away, I stumbled to the trail where Silas waited.</p>



<p class="wp-block-paragraph">“Call 911,” I gasped. “There’s a dead guy in there.”</p>



<p class="wp-block-paragraph">I had a great time writing about burro racing and learning about burros in general: for example, there are guard burros who sound the alarm if approach a goat herd. And I managed to work a lot of that information into the book. If you’d like to find out more about burro racing, murder investigating, and, yes, tomato jam in <em>The Tomato Jam Murder</em>, check it out now. It’s available on <a href="https://www.amazon.com/Tomato-Murder-Luscious-Delights-Mystery-ebook/dp/B0FL3GD75M/ref=sr_1_1?crid=3NPURUPKOTLOC&amp;dib=eyJ2IjoiMSJ9.FAeiTqBO-w7SNuxfn8iV3A.7M8Wxr4pGGAnNyGi5aD0JBtnQau6eYaVZsValkteBVQ&amp;dib_tag=se&amp;keywords=the+tomato+jam+murder&amp;qid=1760195971&amp;sprefix=%2Caps%2C137&amp;sr=8-1">Amazon</a> October 20, 2025.  <em>Amazon buy link</em>: <a href="https://amzn.to/4oj93e5">https://amzn.to/4oj93e5</a></p>



<p class="wp-block-paragraph"><strong>Tagline:</strong></p>



<p class="wp-block-paragraph"><strong>Roxy’s spending her summer with burros and jam, but there’s a murderer in the mountains.</strong></p>


<div class="wp-block-image">
<figure class="alignleft size-large is-resized"><img data-attachment-id="2310" data-permalink="https://alana-lorens.com/2025/10/19/tomatoes-jam-and-burros/perf5-000x8-000-indd-15/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2025/10/thetomatojammurder_w19514_750.jpg" data-orig-size="500,750" 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;perf5.000x8.000.indd&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="perf5.000&amp;#215;8.000.indd" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2025/10/thetomatojammurder_w19514_750.jpg?w=500" loading="lazy" width="500" height="750" src="https://alana-lorens.com/wp-content/uploads/2025/10/thetomatojammurder_w19514_750.jpg?w=500" alt="" class="wp-image-2310" style="width:363px;height:auto" srcset="https://alana-lorens.com/wp-content/uploads/2025/10/thetomatojammurder_w19514_750.jpg 500w, https://alana-lorens.com/wp-content/uploads/2025/10/thetomatojammurder_w19514_750.jpg?w=100 100w, https://alana-lorens.com/wp-content/uploads/2025/10/thetomatojammurder_w19514_750.jpg?w=200 200w" sizes="(max-width: 500px) 100vw, 500px" /></figure>
</div>


<p class="wp-block-paragraph"><strong>Our story:</strong></p>



<p class="wp-block-paragraph">It’s burro racing season in the Rockies, and Roxy Constantine is all for it. Now if she can come up with a good recipe for tomato jam, her summer will be complete. But when Roxy finds a body on the burro race course, she’s suddenly plunged into a murder investigation. And when her innocent friend is accused of killing her ex, Roxy must challenge a corrupt police chief who wants to shut her up. Now she needs to find the real killer and save a neighboring town from a plot to ruin its mountain magic.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><img data-attachment-id="2062" data-permalink="https://alana-lorens.com/2024/08/13/sometimes-one-plus-one-equals-three/green-clover-leaves-isolated-on-white-background-st-patrick-s-2/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2024/08/depositphotos_346053980_xl.jpg" data-orig-size="4608,3072" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NIKON D3100&quot;,&quot;caption&quot;:&quot;green clover leaves isolated on white background. St.Patrick &#039;s Day. nature&quot;,&quot;created_timestamp&quot;:&quot;1496951990&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;50&quot;,&quot;iso&quot;:&quot;100&quot;,&quot;shutter_speed&quot;:&quot;0.066666666666667&quot;,&quot;title&quot;:&quot;green clover leaves isolated on white background. St.Patrick &#039;s&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="green clover leaves isolated on white background. St.Patrick &amp;#8216;s" data-image-description="" data-image-caption="&lt;p&gt;green clover leaves isolated on white background. St.Patrick &amp;#8216;s Day. nature&lt;/p&gt;
" data-large-file="https://alana-lorens.com/wp-content/uploads/2024/08/depositphotos_346053980_xl.jpg?w=620" loading="lazy" width="620" height="413" src="https://alana-lorens.com/wp-content/uploads/2024/08/depositphotos_346053980_xl.jpg?w=620" alt="" class="wp-image-2062" style="width:180px;height:auto" srcset="https://alana-lorens.com/wp-content/uploads/2024/08/depositphotos_346053980_xl.jpg?w=620 620w, https://alana-lorens.com/wp-content/uploads/2024/08/depositphotos_346053980_xl.jpg?w=1240 1240w, https://alana-lorens.com/wp-content/uploads/2024/08/depositphotos_346053980_xl.jpg?w=150 150w, https://alana-lorens.com/wp-content/uploads/2024/08/depositphotos_346053980_xl.jpg?w=300 300w, https://alana-lorens.com/wp-content/uploads/2024/08/depositphotos_346053980_xl.jpg?w=768 768w, https://alana-lorens.com/wp-content/uploads/2024/08/depositphotos_346053980_xl.jpg?w=1024 1024w" sizes="(max-width: 620px) 100vw, 620px" /></figure>
</div>


<p class="wp-block-paragraph"><strong>Meg Benjamin</strong> is an award-winning author of romance and cozy mysteries. Meg’s cozy mystery series, Luscious Delights from Wild Rose Press, concerns a jam-making sleuth based in the mythical small town of Shavano, Colorado. Her Konigsburg series is set in the Texas Hill Country and her Salt Box and Brewing Love trilogies are set in the Colorado Rockies (all are available from Entangled Publishing and from Meg’s indie line). Along with romance and cozies, Meg is also the author of the paranormal Ramos Family trilogy from Berkley InterMix and the Folk trilogy from Meg’s indie line. Meg’s books have won numerous awards, including an EPIC Award, a <em>Romantic Times</em> Reviewers’ Choice Award, the Holt Medallion from Virginia Romance Writers, the Beanpot Award from the New England &nbsp;Romance Writers, the Carly Crown Jewel of Books from the Mid-America Romance Authors, and the Award of Excellence from Colorado Romance Writers.</p>



<p class="wp-block-paragraph"><strong>Social Media Links:</strong></p>



<p class="wp-block-paragraph">Facebook: <a href="https://www.facebook.com/meg.benjamin1/">https://www.facebook.com/meg.benjamin1/</a> (personal)</p>



<p class="wp-block-paragraph"><a href="https://www.facebook.com/profile.php?id=100063609878239">https://www.facebook.com/profile.php?id=100063609878239</a> (author)</p>



<p class="wp-block-paragraph">Instagram: @meg_benjamin</p>



<p class="wp-block-paragraph">Threads: <a href="https://www.threads.net/@meg_benjamin">https://www.threads.net/@meg_benjamin</a></p>



<p class="wp-block-paragraph">BlueSky: <a href="https://bsky.app/profile/meg-benjamin.bsky.social">https://bsky.app/profile/meg-benjamin.bsky.social</a></p>



<p class="wp-block-paragraph">Goodreads: <a href="https://www.goodreads.com/author/show/2869971.Meg_Benjamin">https://www.goodreads.com/author/show/2869971.Meg_Benjamin</a></p>



<p class="wp-block-paragraph">Bookbub: <a href="https://www.bookbub.com/profile/meg-benjamin">https://www.bookbub.com/profile/meg-benjamin</a></p>



<p class="wp-block-paragraph">Pinterest: <a href="https://www.pinterest.com/megbenjamin/">https://www.pinterest.com/megbenjamin/</a></p>



<p class="wp-block-paragraph">Amazon: <a href="https://www.amazon.com/stores/Meg-Benjamin/author/B0030F12FY?ref=ap_rdr&amp;store_ref=ap_rdr&amp;isDramIntegrated=true&amp;shoppingPortalEnabled=true">https://www.amazon.com/stores/Meg-Benjamin/author/B0030F12FY?ref=ap_rdr&amp;store_ref=ap_rdr&amp;isDramIntegrated=true&amp;shoppingPortalEnabled=true</a></p>



<p class="wp-block-paragraph">YouTube: <a href="https://www.youtube.com/@megbenjamin1396">https://www.youtube.com/@megbenjamin1396</a></p>



<p class="wp-block-paragraph">Website: <a href="http://www.MegBenjamin.com/">http://www.MegBenjamin.com/</a></p>
									</div><!-- .entry-content -->
			
			<footer class="entry-meta">
				Posted in <a href="https://alana-lorens.com/category/author/" rel="category tag">author</a>, <a href="https://alana-lorens.com/category/book-series/" rel="category tag">book series</a>, <a href="https://alana-lorens.com/category/guest-post/" rel="category tag">guest post</a>, <a href="https://alana-lorens.com/category/mystery/" rel="category tag">mystery</a>, <a href="https://alana-lorens.com/category/the-wild-rose-press/" rel="category tag">The Wild Rose Press</a> and tagged <a href="https://alana-lorens.com/tag/alana-lorens/" rel="tag">Alana Lorens</a>, <a href="https://alana-lorens.com/tag/author/" rel="tag">author</a>, <a href="https://alana-lorens.com/tag/books/" rel="tag">books</a>, <a href="https://alana-lorens.com/tag/burro-race/" rel="tag">burro race</a>, <a href="https://alana-lorens.com/tag/colorado/" rel="tag">Colorado</a>, <a href="https://alana-lorens.com/tag/danger/" rel="tag">danger</a>, <a href="https://alana-lorens.com/tag/meg-benjamin/" rel="tag">Meg Benjamin</a>, <a href="https://alana-lorens.com/tag/mystery/" rel="tag">mystery</a>, <a href="https://alana-lorens.com/tag/tomato-jam/" rel="tag">tomato jam</a>, <a href="https://alana-lorens.com/tag/women/" rel="tag">women</a>, <a href="https://alana-lorens.com/tag/writing/" rel="tag">writing</a><span class="on-date"> on <a href="https://alana-lorens.com/2025/10/19/tomatoes-jam-and-burros/" title="4:22 am" rel="bookmark"><time class="entry-date" datetime="2025-10-19T04:22:00-04:00">October 19, 2025</time></a></span><span class="by-author"> by <span class="author vcard"><a class="url fn n" href="https://alana-lorens.com/author/awalkabout/" title="View all posts by Babs Mountjoy" rel="author">Babs Mountjoy</a></span></span>.
				
							</footer><!-- .entry-meta -->


</article><!-- #post-# .#post-class-# -->

<article id="post-2293" class="post-2293 post type-post status-publish format-standard hentry category-uncategorized tag-books tag-fiction tag-iraq-veteran tag-ptsd tag-pttsburgh tag-romance tag-suspense tag-woman-lawyer">

			<a href="https://alana-lorens.com/2025/09/20/how-30-years-practicing-law-fuels-a-novelists-career-even-if-youre-not-john-grisham/" rel="bookmark">
	
			<header class="entry-header">

				
				<h1 class="entry-title">How 30 years practicing law fuels a novelist’s career, even if you’re not John&nbsp;Grisham</h1>
			</header><!-- .entry-header -->

												</a>
								<div class="entry-content">
					
<p class="wp-block-paragraph">What huge irony&#8211;after 30 years of being a divorce lawyer, now I write romance novels.</p>



<p class="wp-block-paragraph"> Am I trying to atone for all those homes I “wrecked?”</p>


<div class="wp-block-image">
<figure class="alignleft size-large is-resized"><img data-attachment-id="2299" data-permalink="https://alana-lorens.com/2025/09/20/how-30-years-practicing-law-fuels-a-novelists-career-even-if-youre-not-john-grisham/bookbrushimage-2022-4-12-19-5928/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2025/09/bookbrushimage-2022-4-12-19-5928.png" data-orig-size="1080,1350" 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="BookBrushImage-2022-4-12-19-5928" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2025/09/bookbrushimage-2022-4-12-19-5928.png?w=620" loading="lazy" width="819" height="1023" src="https://alana-lorens.com/wp-content/uploads/2025/09/bookbrushimage-2022-4-12-19-5928.png?w=819" alt="" class="wp-image-2299" style="aspect-ratio:0.7996155694377703;width:332px;height:auto" srcset="https://alana-lorens.com/wp-content/uploads/2025/09/bookbrushimage-2022-4-12-19-5928.png?w=819 819w, https://alana-lorens.com/wp-content/uploads/2025/09/bookbrushimage-2022-4-12-19-5928.png?w=120 120w, https://alana-lorens.com/wp-content/uploads/2025/09/bookbrushimage-2022-4-12-19-5928.png?w=240 240w, https://alana-lorens.com/wp-content/uploads/2025/09/bookbrushimage-2022-4-12-19-5928.png?w=768 768w, https://alana-lorens.com/wp-content/uploads/2025/09/bookbrushimage-2022-4-12-19-5928.png 1080w" sizes="(max-width: 819px) 100vw, 819px" /></figure>
</div>


<p class="wp-block-paragraph">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Not really. The writing actually came first. I wrote my first full-length novel at 14, a dark time travel Gothic about a girl from the present who appeared as a governess in the past, yada, yada. It was pretty terrible. I wrote two more before I got out of college. Not great, but I’d learned a few things. I became a journalist and worked at a newspaper in deep South Florida for five years or so, so I wrote a lot more, and learned a few more things.</p>



<p class="wp-block-paragraph">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Then I went to law school. A single mom of two girls under 5, I had my work cut out for me, and the writing went by the wayside. Then the law practice, hours and hours each week to keep those girls in shoes.</p>



<p class="wp-block-paragraph">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; But finally, I got comfortable in my mid-40s, remarried, with a new family, and I thought I’d try my hand at it again. I came up with three stories, all starring a heroine who lived and worked as an attorney in the nearest big city, Pittsburgh. The first became CONVICTION OF THE HEART, the second, SECOND CHANCES, and the third, VOODOO DREAMS: the <a href="https://alana-lorens.com/the-pittsburgh-lady-lawyers/">Pittsburgh Lady Lawyer Series</a>.&nbsp;&nbsp;</p>


<div class="wp-block-image">
<figure class="alignleft size-large"><img data-attachment-id="2296" data-permalink="https://alana-lorens.com/2025/09/20/how-30-years-practicing-law-fuels-a-novelists-career-even-if-youre-not-john-grisham/jenn-5/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2025/09/jenn-5.jpg" data-orig-size="160,240" 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="Jenn 5" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2025/09/jenn-5.jpg?w=160" loading="lazy" width="160" height="240" src="https://alana-lorens.com/wp-content/uploads/2025/09/jenn-5.jpg?w=160" alt="" class="wp-image-2296" srcset="https://alana-lorens.com/wp-content/uploads/2025/09/jenn-5.jpg 160w, https://alana-lorens.com/wp-content/uploads/2025/09/jenn-5.jpg?w=100 100w" sizes="(max-width: 160px) 100vw, 160px" /></figure>
</div>


<p class="wp-block-paragraph">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SECOND CHANCES tells the story of Inessa Regan, a 42-year-old attorney who is fired from her job as a long-time associate working divorce cases at a small firm. This is not because of anything she’s done, but because the wife of one of the partners is threatened by any female attorney in her husband’s office, even one with thick thighs who consoles herself with Ben and Jerry’s—a lot. Suddenly on her own, she doesn’t know what to do or how to begin again.</p>


<div class="wp-block-image">
<figure class="alignright size-large is-resized"><img data-attachment-id="2301" data-permalink="https://alana-lorens.com/2025/09/20/how-30-years-practicing-law-fuels-a-novelists-career-even-if-youre-not-john-grisham/couple-holding-hands-2/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2025/09/inessasilhouettes-for-wv-pic.jpg" data-orig-size="900,601" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;4&quot;,&quot;credit&quot;:&quot;Ron Chapple Stock&quot;,&quot;camera&quot;:&quot;Canon EOS-1Ds Mark II&quot;,&quot;caption&quot;:&quot;Back view of mid-adult couple holding hands walking on beach with seashell in foreground.&quot;,&quot;created_timestamp&quot;:&quot;1149725064&quot;,&quot;copyright&quot;:&quot;Copyright 2009 Ron Chapple Stock&quot;,&quot;focal_length&quot;:&quot;40&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.0015625&quot;,&quot;title&quot;:&quot;Couple holding hands.&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Couple holding hands." data-image-description="" data-image-caption="&lt;p&gt;Back view of mid-adult couple holding hands walking on beach with seashell in foreground.&lt;/p&gt;
" data-large-file="https://alana-lorens.com/wp-content/uploads/2025/09/inessasilhouettes-for-wv-pic.jpg?w=620" loading="lazy" width="900" height="601" src="https://alana-lorens.com/wp-content/uploads/2025/09/inessasilhouettes-for-wv-pic.jpg?w=900" alt="" class="wp-image-2301" style="aspect-ratio:1.4975149957155098;width:379px;height:auto" srcset="https://alana-lorens.com/wp-content/uploads/2025/09/inessasilhouettes-for-wv-pic.jpg 900w, https://alana-lorens.com/wp-content/uploads/2025/09/inessasilhouettes-for-wv-pic.jpg?w=150 150w, https://alana-lorens.com/wp-content/uploads/2025/09/inessasilhouettes-for-wv-pic.jpg?w=300 300w, https://alana-lorens.com/wp-content/uploads/2025/09/inessasilhouettes-for-wv-pic.jpg?w=768 768w" sizes="(max-width: 900px) 100vw, 900px" /></figure>
</div>


<p class="wp-block-paragraph">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; When her well-meaning neighbor brings her a client to make a will, a young veteran of the Iraq War. Inessa is desperate for the income, so she says yes. But Kurt Lowdon brings her a lot more than the $75 the paperwork costs. His courage and confidence in her helps her move past the devastating hit her life has taken, and she moves on to become a solo practitioner.</p>



<p class="wp-block-paragraph">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; She also falls in love with him, which becomes a risky business as secrets from his past threaten them both.</p>



<p class="wp-block-paragraph">    <strong>BLURB:</strong></p>


<div class="wp-block-image">
<figure class="alignright size-large is-resized"><img data-attachment-id="2297" data-permalink="https://alana-lorens.com/2025/09/20/how-30-years-practicing-law-fuels-a-novelists-career-even-if-youre-not-john-grisham/secondchances-promo-3/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2025/09/secondchances-promo.jpg" data-orig-size="400,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="SecondChances-promo" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2025/09/secondchances-promo.jpg?w=400" loading="lazy" width="400" height="600" src="https://alana-lorens.com/wp-content/uploads/2025/09/secondchances-promo.jpg?w=400" alt="" class="wp-image-2297" style="width:349px;height:auto" srcset="https://alana-lorens.com/wp-content/uploads/2025/09/secondchances-promo.jpg 400w, https://alana-lorens.com/wp-content/uploads/2025/09/secondchances-promo.jpg?w=100 100w, https://alana-lorens.com/wp-content/uploads/2025/09/secondchances-promo.jpg?w=200 200w" sizes="(max-width: 400px) 100vw, 400px" /></figure>
</div>


<p class="wp-block-paragraph">When Inessa Regan gets a pink slip, laid off from her law firm at the age of 42, without prospects she’s sure her life is over. She hides from the world, until her neighbor brings her a client, a young Iraq war veteran dying of cancer.</p>



<p class="wp-block-paragraph">Kurt Lowdon only wants to make sure his affairs are in order should the worst happen, but meeting Inessa gives him encouragement on the road to recovery. His quest to help her realize her self-worth leads them into dangers they never expected, as horrors from the war and long-hidden family secrets come back to haunt them.</p>



<p class="wp-block-paragraph"><strong>Book trailer</strong> <a href="https://www.youtube.com/watch?v=CEMtSxd6FQQ">here</a></p>



<p class="wp-block-paragraph"><strong>Buy now!</strong> on <a href="https://www.amazon.com/Second-Chances-Alana-Lorens-ebook/dp/B008CVY09Q/ref=asap_bc?ie=UTF8">Amazon</a>     <a href="https://www.barnesandnoble.com/w/second-chances-alana-lorens/1111662223?ean=9781612710808">Barnes and Noble</a>     <a href="https://www.kobo.com/us/en/ebook/second-chances-2">https://www.kobo.com/us/en/ebook/second-chances-2</a></p>



<p class="wp-block-paragraph"><strong>Excerpt:</strong></p>



<p class="wp-block-paragraph">Inessa had visited the Pittsburgh IKEA store half a dozen times before, addicted to the simple, classic furniture designs and colorful décor items, but none of those experiences had ever been like this.</p>



<p class="wp-block-paragraph">Perhaps the difference was because Kurt was a man, maybe it was the purpose of the visit, but she had fun. Negotiating the departments along the store’s one-way dictated path became an adventure different from any she’d had with a girlfriend.</p>



<p class="wp-block-paragraph">The things that attracted Kurt’s attention! Forget the Swedish meatballs. He raved about a cushy pillow in shades of spring green and chocolate. He bought new towels in bright red and orange. Every gadget fascinated him, and he dug a sample out of the bins to test each one.</p>



<p class="wp-block-paragraph">When they passed one bedroom set-up, the downy beige and green comforter was softly rumpled, as if the owner had just climbed out seconds before. “That looks comfortable.” he exclaimed, and he scrambled right in.</p>



<p class="wp-block-paragraph">“Kurt!” She’d looked around, mortified. Several young couples passing by in madras Dockers and khakis stopped to stare; some smiled.</p>



<p class="wp-block-paragraph">“What? This is a display bed. You’re supposed to try it out. Come on.” He held up the covers for her to join him. The mischievous expression on his face broke her up, embarrassed as she was.<br>“I don’t think so. You rest. I’ll be looking at office supplies.”</p>



<p class="wp-block-paragraph">“Spoilsport. No one will care if you romp in the bedroom department at IKEA. Look, now everyone else is, too.” He gestured to several displays around them as other customers climbed onto neighboring beds, laughing and teasing each other. When she still held back, he affected a pout and pushed himself out, smoothing the bedspread again. “All right. Business first. Let’s go.”</p>



<p class="wp-block-paragraph">Over the next couple of hours and the seeming miles of displays, he thoughtfully helped her select what she needed—a desk, comfortable chairs for her consulting clients, bookshelves for her legal research materials—but also remained playful. He had to experiment with every one of the wheeled desk chairs, spinning them around until he found the one with the least traction. “Try this one. It’s better than Kennywood.”</p>



<p class="wp-block-paragraph">She laughed and checked the growing list of items on the small screen of her Blackberry, and the total she’d be spending. The thought of invading her cushion money sent little electric quivers through her midsection, but now that she was committed to this, it had to be done. “I think that does it.”</p>



<p class="wp-block-paragraph">“Pick-up downstairs.”</p>



<p class="wp-block-paragraph">They went down to the first floor and traversed the long rows of cardboard boxes, loading the ones they’d chosen onto a flatbed cart. He grabbed a new desktop set in green and blue. “You need this.”</p>



<p class="wp-block-paragraph">“I need it? For what?”</p>



<p class="wp-block-paragraph">“Just for fun.”</p>



<p class="wp-block-paragraph">“Fun? It’s for work. Work’s not about fun.”</p>



<p class="wp-block-paragraph">“Every moment should be about fun, counselor. Every moment.”</p>



<p class="wp-block-paragraph">       <strong>BIO AND SOCIAL MEDIA</strong></p>



<p class="wp-block-paragraph">Website&nbsp; &nbsp;<a href="https://wordpress.com/page/alana-lorens.com/21">https://wordpress.com/page/alana-lorens.com/21</a></p>



<p class="wp-block-paragraph">Facebook&nbsp;&nbsp;&nbsp; <a href="https://www.facebook.com/AlanaLorens/">https://www.facebook.com/AlanaLorens/</a></p>



<p class="wp-block-paragraph">Goodreads&nbsp;&nbsp; <a href="https://www.goodreads.com/author/show/4829967.Alana_Lorens">https://www.goodreads.com/author/show/4829967.Alana_Lorens</a></p>



<p class="wp-block-paragraph">Amazon Author Page&nbsp; <a href="https://www.amazon.com/Alana-Lorens/e/B005GE0WBC/ref=dp_byline_cont_ebooks_1">https://www.amazon.com/Alana-Lorens/e/B005GE0WBC/ref=dp_byline_cont_ebooks_1</a></p>



<p class="wp-block-paragraph">Bookbub: <a href="https://www.bookbub.com/profile/alana-lorens">https://www.bookbub.com/profile/alana-lorens</a></p>



<p class="wp-block-paragraph">Email:&nbsp; contact@alana-lorens.com</p>



<p class="wp-block-paragraph"><strong>Author Bio: </strong> Alana Lorens has been a published writer for more than forty years. Currently a resident of Asheville, North Carolina, she loves her time in the smoky Blue Ridge mountains. One of her novellas, <em>THAT GIRL’S THE ONE I LOVE,</em> is set in the city of Asheville during the old Bele Chere festival. She lives with her daughter, who is the youngest of her seven children, two crotchety old cats, and five kittens of various ages.</p>
									</div><!-- .entry-content -->
			
			<footer class="entry-meta">
				Posted in <a href="https://alana-lorens.com/category/uncategorized/" rel="category tag">Uncategorized</a> and tagged <a href="https://alana-lorens.com/tag/books/" rel="tag">books</a>, <a href="https://alana-lorens.com/tag/fiction/" rel="tag">fiction</a>, <a href="https://alana-lorens.com/tag/iraq-veteran/" rel="tag">iraq-veteran</a>, <a href="https://alana-lorens.com/tag/ptsd/" rel="tag">PTSD</a>, <a href="https://alana-lorens.com/tag/pttsburgh/" rel="tag">pttsburgh</a>, <a href="https://alana-lorens.com/tag/romance/" rel="tag">romance</a>, <a href="https://alana-lorens.com/tag/suspense/" rel="tag">suspense</a>, <a href="https://alana-lorens.com/tag/woman-lawyer/" rel="tag">woman-lawyer</a><span class="on-date"> on <a href="https://alana-lorens.com/2025/09/20/how-30-years-practicing-law-fuels-a-novelists-career-even-if-youre-not-john-grisham/" title="5:37 pm" rel="bookmark"><time class="entry-date" datetime="2025-09-20T17:37:52-04:00">September 20, 2025</time></a></span><span class="by-author"> by <span class="author vcard"><a class="url fn n" href="https://alana-lorens.com/author/awalkabout/" title="View all posts by Babs Mountjoy" rel="author">Babs Mountjoy</a></span></span>.
				
							</footer><!-- .entry-meta -->


</article><!-- #post-# .#post-class-# -->

<article id="post-2273" class="post-2273 post type-post status-publish format-standard hentry category-author category-giveaway category-guest-post category-romance-suspense-new-blog-author-writer-writing category-romantic-suspense category-second-chance-romance category-suspense-novel category-thriller category-uncategorized tag-a-m-holloway tag-alana-lorens tag-author tag-books tag-danger tag-fbi-tampa-mystery-series tag-love tag-romance tag-romantic-suspense tag-writing">

			<a href="https://alana-lorens.com/2025/08/19/can-anything-good-come-from-the-worst-day-ever/" rel="bookmark">
	
			<header class="entry-header">

				
				<h1 class="entry-title">Can anything good come from the worst day&nbsp;ever?</h1>
			</header><!-- .entry-header -->

												</a>
								<div class="entry-content">
					<p>&nbsp;</p>
<div class="separator" style="clear: both;text-align: center"><a href="https://silverdaggerbooktours.com/wp-content/uploads/2025/08/banner-revenge-amholloway-1.png" style="margin-left: 1em;margin-right: 1em"><img loading="lazy" border="0" height="176" src="https://silverdaggerbooktours.com/wp-content/uploads/2025/08/banner-revenge-amholloway-1.png" width="400" /></a></div>
<div class="separator" style="clear: both;text-align: center"></div>
</p>
<p class="MsoNormal" style="text-align: center">Love, Bullets, and<br />
a Second Chance — Will They Survive the Crossfire?</p>
<p class="MsoNormal" style="text-align: center"></p>
<div class="separator" style="clear: both;text-align: center"><a href="https://silverdaggerbooktours.com/wp-content/uploads/2025/08/ebook-revenge-amholloway-1.png" style="margin-left: 1em;margin-right: 1em"><img loading="lazy" border="0" height="400" src="https://silverdaggerbooktours.com/wp-content/uploads/2025/08/ebook-revenge-amholloway-1.png" width="323" /></a></div>
<div class="separator" style="clear: both;text-align: center">
<p class="MsoNormal"><b>Revenge</b></p>
<p class="MsoNormal">The FBI Tampa Mystery Series Book 1 </p>
<p class="MsoNormal">by A.M. Holloway</p>
<p class="MsoNormal">Genre: Clean Romantic Suspense, Mystery Thriller</p>
<p class="MsoNormal"></p>
<p class="MsoNormal">
<div class="separator" style="clear: both;text-align: center"><a href="https://silverdaggerbooktours.com/wp-content/uploads/2025/08/revenge-about-the-book.png" style="margin-left: 1em;margin-right: 1em"><img loading="lazy" border="0" height="78" src="https://silverdaggerbooktours.com/wp-content/uploads/2025/08/revenge-about-the-book.png" width="320" /></a></div>
<div class="separator" style="clear: both;text-align: center"></div>
</p>
<p class="MsoNormal"><b>Love, Bullets, and a<br />
Second Chance — Will They Survive the Crossfire?</b></p>
<p>When&nbsp;<b>FBI Special Agent Micah French</b>&nbsp;joins<br />
a high-risk pursuit through the streets of Tampa, he never expects the day to<br />
end with his partner shot and the woman he once loved holding his partner’s<br />
life in her hands.</p>
<p>Finley Herald, the surgeon who broke his heart a decade ago, now lives in<br />
Tampa. She’s saving lives at Tampa General and possibly risking her own when a<br />
vengeful cartel leader wages war against the agents involved in his brother’s<br />
death.</p>
<p>As bullets fly, allies fall, and a trail of revenge stretches from Mexico to<br />
Florida, Micah must navigate a storm of violence, betrayal, and second chances.</p>
<p>Every decision could be his last, and Finley’s reappearance threatens to<br />
shatter the emotional defenses he’s spent years building.</p>
<p><b>This book is a gripping blend of action,<br />
faith, and romance, where love may be the deadliest risk of all.</b></p>
<p class="MsoNormal"><b><br /></b></p>
<div class="separator" style="clear: both">
<p class="MsoNormal"><b>&nbsp;</b><b><span style="color: #ee0000">**Get it for Only .99cents 8/24 – 8/26!**</span></b></p>
<p class="MsoNormal"><b><span style="color: #ee0000"></span></b></p>
<p class="MsoNormal"><b><a href="https://www.amazon.com/dp/B0FK5ZC8PD">Amazon</a> * <a href="https://www.bookbub.com/books/revenge-the-fbi-tampa-mystery-series-book-1-by-a-m-holloway">Bookbub</a><br />
* <a href="https://www.goodreads.com/book/show/239421913-revenge">Goodreads</a></b></p>
<p class="MsoNormal"></p>
<div class="separator" style="clear: both;text-align: center"><a href="https://silverdaggerbooktours.com/wp-content/uploads/2025/08/revenge-about-the-author.png" style="margin-left: 1em;margin-right: 1em"><img loading="lazy" border="0" height="85" src="https://silverdaggerbooktours.com/wp-content/uploads/2025/08/revenge-about-the-author.png" width="400" /></a></div>
<div class="separator" style="clear: both;text-align: center"><a href="https://silverdaggerbooktours.com/wp-content/uploads/2025/08/AM-Holloway-bio-pic.jpg" style="margin-left: 1em;margin-right: 1em"><img loading="lazy" border="0" height="240" src="https://silverdaggerbooktours.com/wp-content/uploads/2025/08/AM-Holloway-bio-pic.jpg" width="240" /></a></div>
<div class="separator" style="clear: both;text-align: center"></div>
<p class="MsoNormal">A.M. Holloway is an author of clean murder mysteries where<br />
crime and suspense take hold. Her catalog spans five series. A.M., who is<br />
married, relies on her husband&#8217;s expertise in the CSI field to ensure accuracy<br />
in her books. She was born and raised in Georgia but now lives in Central<br />
Florida. When not writing, you will find her with her family, enjoying the<br />
outdoors, or sitting in her favorite chair, daydreaming about her next book.</p>
<p class="MsoNormal">&nbsp;</p>
<p class="MsoNormal"><b><a href="https://amholloway.com/welcome">Website</a> * <a href="https://www.facebook.com/amhollowaybooks/">Facebook</a> * <a href="https://www.instagram.com/amhollowaybooks">Instagram</a> * <a href="https://www.bookbub.com/profile/a-m-holloway">Bookbub</a> * <a href="https://www.amazon.com/stores/A.M.-Holloway/author/B08MFPMG3Q">Amazon</a><br />
* <a href="https://www.goodreads.com/author/show/20858608.A_M_Holloway">Goodreads</a></b></p>
<p class="MsoNormal"><b>&nbsp;</b></p>
<p class="MsoNormal">
<div class="separator" style="clear: both;text-align: center"><a href="https://silverdaggerbooktours.com/wp-content/uploads/2025/08/revenge-giveaway.png" style="margin-left: 1em;margin-right: 1em"><img loading="lazy" border="0" height="109" src="https://silverdaggerbooktours.com/wp-content/uploads/2025/08/revenge-giveaway.png" width="261" /></a></div>
</p>
<p class="MsoNormal"><b>Follow the tour </b><a href="https://sdbook.promo/Revenge"><b>HERE</b></a><b> for special content and a $40 giveaway!</b></p>
<div class="separator" style="clear: both;text-align: center"></div>
<p class="MsoNormal"></p>
<p class="MsoNormal"><a class="rcptr" href="http://www.rafflecopter.com/rafl/display/23d974a94588/" id="rcwidget_ymzzyspm" rel="nofollow" style="text-align: left">a Rafflecopter giveaway</a></p>
<p class="MsoNormal"></p>
<div class="separator" style="clear: both;text-align: center"><a href="https://silverdaggerbooktours.com/wp-content/uploads/2025/03/silverdagger-quill-logo.png" style="margin-left: 1em;margin-right: 1em"><img loading="lazy" border="0" height="264" src="https://silverdaggerbooktours.com/wp-content/uploads/2025/03/silverdagger-quill-logo.png" width="300" /></a></div>
</div>
</div>
<p><a href="https://widget-prime.rafflecopter.com/launch.js">https://widget-prime.rafflecopter.com/launch.js</a></p>
									</div><!-- .entry-content -->
			
			<footer class="entry-meta">
				Posted in <a href="https://alana-lorens.com/category/author/" rel="category tag">author</a>, <a href="https://alana-lorens.com/category/giveaway/" rel="category tag">giveaway</a>, <a href="https://alana-lorens.com/category/guest-post/" rel="category tag">guest post</a>, <a href="https://alana-lorens.com/category/romance-suspense-new-blog-author-writer-writing/" rel="category tag">romance, suspense, new blog, author, writer, writing</a>, <a href="https://alana-lorens.com/category/romantic-suspense/" rel="category tag">romantic suspense</a>, <a href="https://alana-lorens.com/category/second-chance-romance/" rel="category tag">second chance romance</a>, <a href="https://alana-lorens.com/category/suspense-novel/" rel="category tag">suspense novel</a>, <a href="https://alana-lorens.com/category/thriller/" rel="category tag">thriller</a>, <a href="https://alana-lorens.com/category/uncategorized/" rel="category tag">Uncategorized</a> and tagged <a href="https://alana-lorens.com/tag/a-m-holloway/" rel="tag">A.M. Holloway</a>, <a href="https://alana-lorens.com/tag/alana-lorens/" rel="tag">Alana Lorens</a>, <a href="https://alana-lorens.com/tag/author/" rel="tag">author</a>, <a href="https://alana-lorens.com/tag/books/" rel="tag">books</a>, <a href="https://alana-lorens.com/tag/danger/" rel="tag">danger</a>, <a href="https://alana-lorens.com/tag/fbi-tampa-mystery-series/" rel="tag">FBI Tampa Mystery series</a>, <a href="https://alana-lorens.com/tag/love/" rel="tag">love</a>, <a href="https://alana-lorens.com/tag/romance/" rel="tag">romance</a>, <a href="https://alana-lorens.com/tag/romantic-suspense/" rel="tag">romantic suspense</a>, <a href="https://alana-lorens.com/tag/writing/" rel="tag">writing</a><span class="on-date"> on <a href="https://alana-lorens.com/2025/08/19/can-anything-good-come-from-the-worst-day-ever/" title="1:09 am" rel="bookmark"><time class="entry-date" datetime="2025-08-19T01:09:00-04:00">August 19, 2025</time></a></span><span class="by-author"> by <span class="author vcard"><a class="url fn n" href="https://alana-lorens.com/author/awalkabout/" title="View all posts by Babs Mountjoy" rel="author">Babs Mountjoy</a></span></span>.
				
							</footer><!-- .entry-meta -->


</article><!-- #post-# .#post-class-# -->

<article id="post-2252" class="post-2252 post type-post status-publish format-standard hentry category-author category-contest category-friends-to-lovers category-mystery category-paranormal category-supernatural category-suspense-novel category-uncategorized tag-alana-lorens tag-author tag-award-winner tag-danger tag-dragonflhy-publishing tag-paranormal tag-writing">

			<a href="https://alana-lorens.com/2025/07/16/when-does-a-death-become-a-murder-mfrwhooks/" rel="bookmark">
	
			<header class="entry-header">

				
				<h1 class="entry-title">When does a death become a murder?     #MFRWHooks </h1>
			</header><!-- .entry-header -->

												</a>
								<div class="entry-content">
					
<p class="wp-block-paragraph">In REMNANTS OF FIRE, newspaper reporter Sara Woods is investigating a string of deaths that seem to involve the new-found, avant-garde medical facility she hopes can cure her chronic pain. Dr. Ruprei has taken such good care of Sara, that she is reluctant to believe it could be possible. But then, over dinner, she speaks with traditional-Western doctor Rick Paulsen, who suspects the clinic&#8211;and has evidence:</p>



<p class="wp-block-paragraph">When the waiter brought the souvlaki and more bread. After he left, I leaned forward and put my elbows on the table. “So what’s going on here? Why did you call me?”</p>


<div class="wp-block-image">
<figure class="alignleft size-large is-resized"><img data-attachment-id="2261" data-permalink="https://alana-lorens.com/2025/07/16/when-does-a-death-become-a-murder-mfrwhooks/remnantsoffire400x600-4/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2025/07/remnantsoffire400x600.jpg" data-orig-size="400,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="remnantsoffire400x600" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2025/07/remnantsoffire400x600.jpg?w=400" loading="lazy" width="400" height="600" src="https://alana-lorens.com/wp-content/uploads/2025/07/remnantsoffire400x600.jpg?w=400" alt="" class="wp-image-2261" style="width:311px;height:auto" srcset="https://alana-lorens.com/wp-content/uploads/2025/07/remnantsoffire400x600.jpg 400w, https://alana-lorens.com/wp-content/uploads/2025/07/remnantsoffire400x600.jpg?w=100 100w, https://alana-lorens.com/wp-content/uploads/2025/07/remnantsoffire400x600.jpg?w=200 200w" sizes="(max-width: 400px) 100vw, 400px" /></figure>
</div>


<p class="wp-block-paragraph">Rick’s blue eyes dissected me. “Because there’s something unusual about you.”</p>



<p class="wp-block-paragraph">Oh, please. That was as bad as ‘What’s your sign, baby?’ “Do I seem naive enough to fall for that line?”</p>



<p class="wp-block-paragraph">“Not really.” He speared a chunk of lamb and dipped it in the creamy cucumber sauce. “That doesn’t make it any less true. And I think you really care about Lily Kimball, and what happened to her.”</p>



<p class="wp-block-paragraph">“Then you believe something ‘happened.’” Remembering his outburst at the hospital, I added, “You think she was killed by someone. You even know who.” I watched his face for reaction.</p>



<p class="wp-block-paragraph">“I suspect. I don’t know.” He took a long drink of water, as if he were trying to swallow something unpalatable.</p>



<p class="wp-block-paragraph">“But you haven’t gone to the police.” He shook his head. “Why not?”</p>



<p class="wp-block-paragraph">He started to answer and then Athena swept over, wanting to make sure everything was to her dear doctor’s satisfaction. She effused with grand passion about how wonderful Rick Paulsen was, as a medical professional and as a man, her praise transparently designed to convince me, as his dinner partner and potential life mate, of his worth. He squirmed as she continued, but seemed loath to interrupt her. Once we had assured her that everything was delightful, she withdrew at last, to observe from behind the cash register.</p>



<p class="wp-block-paragraph">When he didn’t answer my last question, I asked again. “Why haven’t you gone to the police?”</p>



<p class="wp-block-paragraph">“You don’t understand. The police won’t be any help in this matter.”</p>



<p class="wp-block-paragraph">“They’re investigating her death—”</p>



<p class="wp-block-paragraph">“They’re not investigating her death! They’re just going through the motions until everyone forgets about her and they can toss her file in a cabinet, never to be seen again!” He slapped his fork onto the table, a flush of anger suffusing his face, all the way to the tips of his ears. “Just like the others.”</p>


<div class="wp-block-image">
<figure class="alignright size-large is-resized"><img data-attachment-id="2265" data-permalink="https://alana-lorens.com/2025/07/16/when-does-a-death-become-a-murder-mfrwhooks/finalist-nest_2025/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2025/07/finalist-nest_2025.png" data-orig-size="720,720" 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="Finalist-Nest_2025" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2025/07/finalist-nest_2025.png?w=620" loading="lazy" width="720" height="720" src="https://alana-lorens.com/wp-content/uploads/2025/07/finalist-nest_2025.png?w=720" alt="" class="wp-image-2265" style="width:331px;height:auto" srcset="https://alana-lorens.com/wp-content/uploads/2025/07/finalist-nest_2025.png 720w, https://alana-lorens.com/wp-content/uploads/2025/07/finalist-nest_2025.png?w=150 150w, https://alana-lorens.com/wp-content/uploads/2025/07/finalist-nest_2025.png?w=300 300w" sizes="(max-width: 720px) 100vw, 720px" /></figure>
</div>


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



<p class="wp-block-paragraph">REMNANTS OF FIRE has recently been named a finalist in th<strong>e </strong>2025 National Excellence in Story Telling (NEST) Contest! Time to check it out at one of the following sales points or order it at your local indie bookstore. </p>



<p class="wp-block-paragraph"><strong>Buy Links</strong></p>



<p class="wp-block-paragraph"><a href="https://www.amazon.com/dp/194918756X/"><strong>Paperback at Amazon</strong></a><strong>&nbsp;•&nbsp;</strong><a href="https://www.barnesandnoble.com/s/9781949187571"><strong>Paperback at Barnes &amp; Noble</strong></a><strong>&nbsp;•&nbsp;</strong><a href="https://www.barnesandnoble.com/s/9781949187588"><strong>Hardback at Barnes &amp; Noble</strong></a><strong>&nbsp;•&nbsp;</strong><a href="https://www.amazon.com/dp/B0CFDKZ8BZ/"><strong>eBook at Amazon Kindle</strong></a><strong>&nbsp;•&nbsp;</strong><a href="https://books.apple.com/us/book/remnants-of-fire/id6462007441"><strong>eBook at Apple</strong></a><strong>&nbsp;•&nbsp;</strong><a href="https://www.barnesandnoble.com/s/2940185612927"><strong>eBook at Barnes &amp; Noble</strong></a><strong>&nbsp;•&nbsp;</strong><a href="https://www.kobo.com/us/en/ebook/remnants-of-fire"><strong>eBook at Kobo</strong></a><strong>&nbsp;•&nbsp;</strong><a href="https://www.smashwords.com/books/view/1435752"><strong>eBook at Smashwords</strong></a></p>


<div class="wp-block-image">
<figure class="alignleft size-large is-resized"><img data-attachment-id="2034" data-permalink="https://alana-lorens.com/2024/07/10/a-broken-family-and-intrigue-on-the-hot-deadly-streets-of-1996-miami-mfrwhooks/mfrw-roses-pearls-sq-2/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg" data-orig-size="1080,1080" 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="mfrw-roses-pearls-sq" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg?w=620" loading="lazy" width="620" height="620" src="https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg?w=620" alt="" class="wp-image-2034" style="width:302px;height:auto" srcset="https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg?w=620 620w, https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg?w=150 150w, https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg?w=300 300w, https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg?w=768 768w, https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg?w=1024 1024w, https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg 1080w" sizes="(max-width: 620px) 100vw, 620px" /></figure>
</div>


<p class="wp-block-paragraph"><strong>BLURB</strong>:  Looking for a fresh start, Sara Woods takes a job as a news reporter in a small town. Her first assignment is to investigate a string of deaths, all young women her age linked to a local healing center with a strange reputation. The deeper she digs into the clinic, the harder it is to<br>deny links to the paranormal. Can she figure out what is going on and who to trust before it’s too late?</p>



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



<p class="wp-block-paragraph">Watch the <strong>Book Trailer:   </strong><a href="https://youtu.be/pWjJT2upVlo">https://youtu.be/pWjJT2upVlo</a></p>



<p class="wp-block-paragraph">Today&#8217;s post is part of a group of posts from various romance writers&#8211;check out the others below!</p>


<p><!-- start LinkyTools script --><a href="https://www.linkytools.com/basic_linky_include.aspx?id=315933">https://www.linkytools.com/basic_linky_include.aspx?id=315933</a><!-- end LinkyTools script --></p>


<figure class="wp-block-image size-large"><img data-attachment-id="2267" data-permalink="https://alana-lorens.com/2025/07/16/when-does-a-death-become-a-murder-mfrwhooks/bookbrushimage-2022-4-22-7-4852-2/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2025/07/bookbrushimage-2022-4-22-7-4852.png" data-orig-size="1200,628" 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="BookBrushImage-2022-4-22-7-4852" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2025/07/bookbrushimage-2022-4-22-7-4852.png?w=620" loading="lazy" width="1024" height="535" src="https://alana-lorens.com/wp-content/uploads/2025/07/bookbrushimage-2022-4-22-7-4852.png?w=1024" alt="" class="wp-image-2267" srcset="https://alana-lorens.com/wp-content/uploads/2025/07/bookbrushimage-2022-4-22-7-4852.png?w=1024 1024w, https://alana-lorens.com/wp-content/uploads/2025/07/bookbrushimage-2022-4-22-7-4852.png?w=150 150w, https://alana-lorens.com/wp-content/uploads/2025/07/bookbrushimage-2022-4-22-7-4852.png?w=300 300w, https://alana-lorens.com/wp-content/uploads/2025/07/bookbrushimage-2022-4-22-7-4852.png?w=768 768w, https://alana-lorens.com/wp-content/uploads/2025/07/bookbrushimage-2022-4-22-7-4852.png 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
									</div><!-- .entry-content -->
			
			<footer class="entry-meta">
				Posted in <a href="https://alana-lorens.com/category/author/" rel="category tag">author</a>, <a href="https://alana-lorens.com/category/contest/" rel="category tag">contest</a>, <a href="https://alana-lorens.com/category/friends-to-lovers/" rel="category tag">friends to lovers</a>, <a href="https://alana-lorens.com/category/mystery/" rel="category tag">mystery</a>, <a href="https://alana-lorens.com/category/paranormal/" rel="category tag">paranormal</a>, <a href="https://alana-lorens.com/category/supernatural/" rel="category tag">supernatural</a>, <a href="https://alana-lorens.com/category/suspense-novel/" rel="category tag">suspense novel</a>, <a href="https://alana-lorens.com/category/uncategorized/" rel="category tag">Uncategorized</a> and tagged <a href="https://alana-lorens.com/tag/alana-lorens/" rel="tag">Alana Lorens</a>, <a href="https://alana-lorens.com/tag/author/" rel="tag">author</a>, <a href="https://alana-lorens.com/tag/award-winner/" rel="tag">award winner</a>, <a href="https://alana-lorens.com/tag/danger/" rel="tag">danger</a>, <a href="https://alana-lorens.com/tag/dragonflhy-publishing/" rel="tag">Dragonflhy Publishing</a>, <a href="https://alana-lorens.com/tag/paranormal/" rel="tag">paranormal</a>, <a href="https://alana-lorens.com/tag/writing/" rel="tag">writing</a><span class="on-date"> on <a href="https://alana-lorens.com/2025/07/16/when-does-a-death-become-a-murder-mfrwhooks/" title="1:38 am" rel="bookmark"><time class="entry-date" datetime="2025-07-16T01:38:00-04:00">July 16, 2025</time></a></span><span class="by-author"> by <span class="author vcard"><a class="url fn n" href="https://alana-lorens.com/author/awalkabout/" title="View all posts by Babs Mountjoy" rel="author">Babs Mountjoy</a></span></span>.
									<a href="https://alana-lorens.com/2025/07/16/when-does-a-death-become-a-murder-mfrwhooks/#comments">3 Comments</a>				
							</footer><!-- .entry-meta -->


</article><!-- #post-# .#post-class-# -->

<article id="post-2245" class="post-2245 post type-post status-publish format-standard hentry category-author category-book-series category-guest-post category-mystery category-suspense-novel category-the-wild-rose-press category-uncategorized tag-1920s tag-alana-lorens tag-amateur-sleuth tag-author tag-book-review tag-book-reviews tag-books tag-danger tag-family-secrets tag-fiction tag-m-s-spencer tag-mystery tag-queen-anne-houses tag-train-robbery tag-writing">

			<a href="https://alana-lorens.com/2025/06/14/another-winner-mystery-from-m-s-spencer/" rel="bookmark">
	
			<header class="entry-header">

				
				<h1 class="entry-title">Another winner mystery from M.S.&nbsp;Spencer!</h1>
			</header><!-- .entry-header -->

												</a>
								<div class="entry-content">
					
<p class="wp-block-paragraph">Thanks so much Alana, for allowing me to tell your readers about my new mystery, <a href="https://books2read.com/railroadties/">Railroad Ties: the Marmion Grove Murders</a>. I hope they enjoy the excerpt and long to read more!</p>



<p class="wp-block-paragraph"><strong>Blurb</strong></p>


<div class="wp-block-image">
<figure class="alignleft size-large is-resized"><img data-attachment-id="2247" data-permalink="https://alana-lorens.com/2025/06/14/another-winner-mystery-from-m-s-spencer/perf5-000x8-000-indd-14/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2025/06/m.s.spencer_railoadties_marmiongrovemurders.jpg" data-orig-size="1400,2243" 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;perf5.000x8.000.indd&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="perf5.000&amp;#215;8.000.indd" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2025/06/m.s.spencer_railoadties_marmiongrovemurders.jpg?w=620" loading="lazy" width="639" height="1023" src="https://alana-lorens.com/wp-content/uploads/2025/06/m.s.spencer_railoadties_marmiongrovemurders.jpg?w=639" alt="" class="wp-image-2247" style="aspect-ratio:0.6246588346979945;width:297px;height:auto" srcset="https://alana-lorens.com/wp-content/uploads/2025/06/m.s.spencer_railoadties_marmiongrovemurders.jpg?w=639 639w, https://alana-lorens.com/wp-content/uploads/2025/06/m.s.spencer_railoadties_marmiongrovemurders.jpg?w=1278 1278w, https://alana-lorens.com/wp-content/uploads/2025/06/m.s.spencer_railoadties_marmiongrovemurders.jpg?w=94 94w, https://alana-lorens.com/wp-content/uploads/2025/06/m.s.spencer_railoadties_marmiongrovemurders.jpg?w=187 187w, https://alana-lorens.com/wp-content/uploads/2025/06/m.s.spencer_railoadties_marmiongrovemurders.jpg?w=768 768w" sizes="(max-width: 639px) 100vw, 639px" /></figure>
</div>


<p class="wp-block-paragraph">When Sophie Childress discovers a letter written in 1920 by the witness to a murder, she enlists Noah Pennyman—owner of the house where it took place—to investigate. Who was the victim? What did the killer do with the body—not to mention a carpetbag full of money? Together they expose a complex web of family ties and lies that has persisted through four generations in the historic village of Marmion Grove. When two more corpses are unearthed, Noah and Sophie are faced with too many victims and not enough murderers.</p>



<p class="wp-block-paragraph"><a></a><a href="https://books2read.com/railroadties/">Railroad Ties: the Marmion Grove Murders</a></p>



<p class="wp-block-paragraph">Mystery, cozy</p>



<p class="wp-block-paragraph">The Wild Rose Press, June 11, 2025</p>



<p class="wp-block-paragraph">390 pp; 89,900 words<br>Ebook: $5.99; Print $22.99<br>Theme(s): Small Town, Mystery, Humorous/Comedy, Cozy Mystery<br><a href="https://books2read.com/railroadties/">Railroad Ties: the Marmion Grove Murders</a> opens with the discovery of a letter from a witness to a murder. The letter fell out of a copy of Agatha Christie’s first published book, <em>The Mysterious Affair at Styles</em>. The heroine, Sophie Childress, volunteers for the Vassar Book Sale. Now closed down, for forty years it was one of the largest and most successful used book sales in the country, raking in an average of $100,000 for scholarships. Sophie is learning to price rare books, so she recognizes the  Christie volume as a first edition, and discovers that the first printing of the first edition was actually in New York, and not London. The famous London edition of her book was released a full year after the New York one.</p>



<p class="wp-block-paragraph">The letter was written in 1920, the same year as the New York release, sending Sophie and her hero, Noah, on a search for possible connections between the two events.</p>



<p class="wp-block-paragraph"><strong>Excerpt: The Letter<br></strong></p>



<p class="wp-block-paragraph">“What’s this?” She lifted out a heavy polyethylene bag. She knew from Eudora’s instruction that the bag was archival quality. <em>Now why was this one protected when the others weren’t?</em> She slid the book out. “Agatha Christie. <em>The Mysterious Affair at Styles</em>.” Christies were a dime a dozen. Most of her works had millions of copies in print. It was unlikely this was valuable, even though it was a hardback. <em>Maybe it was a gift. There could be an inscription or note inside</em>. She checked the flyleaf. Nothing. She turned to the copyright page. “First edition, first printing.” <em>Okay</em>. New York: John Lane Publishing Company, 1920. <em>Wait a minute</em>. She set it down, puzzled. <em>New York? </em>Christie’s books were published in England. <em>It must be the first American edition</em>. Still, sometimes those fetched surprisingly good prices. <em>Another thing to research at the center</em>. As she reinserted it in its plastic bag, an envelope fell out. Yellowed and stained, it was addressed to Constable Bustwick, Montgomery County Police. <em>No return address or stamp</em>. She opened it.</p>



<p class="wp-block-paragraph">Inside was a scrap of butcher’s brown wrapping paper.<em> It’s a letter</em>. The handwriting was shaky. <em>An older person? A child?</em> Though the date was obscured by a streak of dried ink, she could make out “April” and “1920.” <em>The same year the book was published</em>. She sat down to read.</p>



<p class="wp-block-paragraph"><em>Dear Constable Bustwick,</em></p>



<p class="wp-block-paragraph"><em>I write to you in great distress. I believe I may have witnessed a horrible act. However, I do not know if it was truly a crime, so I am begging you to investigate quietly. If I speak out publicly, I risk my position.</em></p>



<p class="wp-block-paragraph"><em>The event occurred two nights ago. The master and mistress had retired. I had closed up the house and returned to my room when a thunderstorm barreled through. For a time the thunder was quite loud. Lightning struck one of our cherry trees with a great CRACK. I had finally dozed off when a noise outside woke me. It was perhaps an hour past midnight. We have had problems with raccoons in the garbage pit lately, so I took my broom and went out to frighten the creatures off. It was very dark after the storm, with only the feeble light from the hitching post lantern to see by. A figure came around the side of the carriage house. He had a large bundle slung over his shoulder. Mr. Constable, I think it was a body! As I watched, he toppled it into the back seat of an automobile parked on the gravel. When he tried to close the door, a man’s hat fell out. He picked the hat up, threw it inside, and drove away.</em></p>



<p class="wp-block-paragraph"><em>I was terrified, but the master had left strict orders not to disturb them, so I went back to my quarters. The next morning the master and mistress had breakfast as usual. Neither mentioned a late night visitor. The stable held only their Ford Model T and the carriage. The car in the driveway had been much larger and fancier. I remember the lamplight glinting on a chrome hood ornament that resembled a flying bird.</em></p>



<p class="wp-block-paragraph"><em>When the day had almost passed and the master had not altered his normal routine, I began to feel that I’d dreamed the whole thing. Then late that afternoon I was sweeping the carriage house floor and found the glass bottle we keep the rat poison in. It lay in the floor drain, shattered. Constable Bustwick, I do not know if the broken bottle has anything to do with the body, but I fear it does. I beg you to look into it, but please, please don’t contact my master or mention my name. I pray there is a simple explanation for all this.</em></p>



<p class="wp-block-paragraph"><em>Sincerely, Agnes Reilly.</em></p>



<p class="wp-block-paragraph">The letter fell out of Sophie’s hand. <em>My God</em>. Did this Agnes really witness a murder? And why didn’t she mail the letter? Did she mean to hand carry it, or perhaps she couldn’t find a stamp? And how did it end up in the book? She sat, fanning herself with the envelope. Hefting the volume, she quickly slipped the letter between its pages and dropped it back in the box.</p>



<p class="wp-block-paragraph"><em>I have to return to Marmion Grove anyway. I’ll ask Noah about the letter. </em>She was ashamed to realize the thought gave her pleasure</p>



<p class="wp-block-paragraph"><strong>Buy links:</strong></p>



<p class="wp-block-paragraph">Books2Read: <a href="https://books2read.com/railroadties/">https://books2read.com/railroadties/</a></p>



<p class="wp-block-paragraph">Amazon: <a href="https://www.amazon.com/Railroad-Ties-Marmion-Grove-Murders-ebook/dp/B0F38Q5HZR">https://www.amazon.com/Railroad-Ties-Marmion-Grove-Murders-ebook/dp/B0F38Q5HZR</a></p>



<p class="wp-block-paragraph">Barnes &amp; Noble: <a href="https://www.barnesandnoble.com/w/railroad-ties-m-s-spencer/1147152800?ean=2940184496733">https://www.barnesandnoble.com/w/railroad-ties-m-s-spencer/1147152800?ean=2940184496733</a></p>



<p class="wp-block-paragraph">Apple/IBooks: <a href="https://books.apple.com/us/book/railroad-ties-the-marmion-grove-murders/id6744065960">https://books.apple.com/us/book/railroad-ties-the-marmion-grove-murders/id6744065960</a></p>



<p class="wp-block-paragraph">Goodreads: <a href="https://www.goodreads.com/book/show/230846616-railroad-ties">https://www.goodreads.com/book/show/230846616-railroad-ties</a></p>



<p class="wp-block-paragraph">Bookbub: <a href="https://www.bookbub.com/books/railroad-ties-the-marmion-grove-murders-by-m-s-spencer">https://www.bookbub.com/books/railroad-ties-the-marmion-grove-murders-by-m-s-spencer</a></p>



<p class="wp-block-paragraph"><strong>About the Author</strong></p>


<div class="wp-block-image">
<figure class="alignright size-large"><img data-attachment-id="2248" data-permalink="https://alana-lorens.com/2025/06/14/another-winner-mystery-from-m-s-spencer/m-s-spencer-author-3/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2025/06/m.-s.-spencer-author-3.jpg" data-orig-size="343,660" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPad&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1367695381&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.28&quot;,&quot;iso&quot;:&quot;64&quot;,&quot;shutter_speed&quot;:&quot;0.016666666666667&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;,&quot;latitude&quot;:&quot;38.893333333333&quot;,&quot;longitude&quot;:&quot;-77.118833305556&quot;}" data-image-title="M. S. Spencer Author (3)" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2025/06/m.-s.-spencer-author-3.jpg?w=343" loading="lazy" width="343" height="660" src="https://alana-lorens.com/wp-content/uploads/2025/06/m.-s.-spencer-author-3.jpg?w=343" alt="" class="wp-image-2248" srcset="https://alana-lorens.com/wp-content/uploads/2025/06/m.-s.-spencer-author-3.jpg 343w, https://alana-lorens.com/wp-content/uploads/2025/06/m.-s.-spencer-author-3.jpg?w=78 78w, https://alana-lorens.com/wp-content/uploads/2025/06/m.-s.-spencer-author-3.jpg?w=156 156w" sizes="(max-width: 343px) 100vw, 343px" /></figure>
</div>


<p class="wp-block-paragraph">Librarian, anthropologist, research assistant, Congressional aide, speechwriter, nonprofit director—M. S. Spencer has lived or traveled in five of the seven continents and holds degrees in Anthropology, Middle East Studies, and Library Science. In June 2025 she will have published eighteen mystery or romantic suspense novels. She has two children, an exuberant granddaughter, and currently divides her time between the Gulf Coast of Florida and a tiny village in Maine.</p>



<p class="wp-block-paragraph"><strong>Social media links:</strong></p>



<p class="wp-block-paragraph"><a>Blog: </a><a href="https://msspencertalespinner.blogspot.com">https://msspencertalespinner.blogspot.com</a></p>



<p class="wp-block-paragraph">Facebook: <a href="https://www.facebook.com/msspencermysteries">https://www.facebook.com/msspencermysteries</a></p>



<p class="wp-block-paragraph">Twitter: <a href="http://www.twitter.com/msspencerauthor">http://www.twitter.com/msspencerauthor</a></p>



<p class="wp-block-paragraph">GoodReads: <a href="http://www.goodreads.com/msspencer">http://www.goodreads.com/msspencer</a><br>Pinterest: <a href="http://pinterest.com/msspencerauthor/">http://pinterest.com/msspencerauthor/</a></p>



<p class="wp-block-paragraph"><a>Bookbub: </a><a href="https://www.bookbub.com/profile/m-s-spencer">https://www.bookbub.com/profile/m-s-spencer</a></p>



<p class="wp-block-paragraph"><a>Shepherd: </a><a></a><a href="https://shepherd.com/search/author/21204">https://shepherd.com/search/author/21204</a></p>



<p class="wp-block-paragraph">Amazon Author Page: <a href="https://www.amazon.com/stores/author/B002ZOEUC8">https://www.amazon.com/stores/author/B002ZOEUC8</a></p>
									</div><!-- .entry-content -->
			
			<footer class="entry-meta">
				Posted in <a href="https://alana-lorens.com/category/author/" rel="category tag">author</a>, <a href="https://alana-lorens.com/category/book-series/" rel="category tag">book series</a>, <a href="https://alana-lorens.com/category/guest-post/" rel="category tag">guest post</a>, <a href="https://alana-lorens.com/category/mystery/" rel="category tag">mystery</a>, <a href="https://alana-lorens.com/category/suspense-novel/" rel="category tag">suspense novel</a>, <a href="https://alana-lorens.com/category/the-wild-rose-press/" rel="category tag">The Wild Rose Press</a>, <a href="https://alana-lorens.com/category/uncategorized/" rel="category tag">Uncategorized</a> and tagged <a href="https://alana-lorens.com/tag/1920s/" rel="tag">1920s</a>, <a href="https://alana-lorens.com/tag/alana-lorens/" rel="tag">Alana Lorens</a>, <a href="https://alana-lorens.com/tag/amateur-sleuth/" rel="tag">amateur sleuth</a>, <a href="https://alana-lorens.com/tag/author/" rel="tag">author</a>, <a href="https://alana-lorens.com/tag/book-review/" rel="tag">book-review</a>, <a href="https://alana-lorens.com/tag/book-reviews/" rel="tag">book-reviews</a>, <a href="https://alana-lorens.com/tag/books/" rel="tag">books</a>, <a href="https://alana-lorens.com/tag/danger/" rel="tag">danger</a>, <a href="https://alana-lorens.com/tag/family-secrets/" rel="tag">family secrets</a>, <a href="https://alana-lorens.com/tag/fiction/" rel="tag">fiction</a>, <a href="https://alana-lorens.com/tag/m-s-spencer/" rel="tag">M.S. Spencer</a>, <a href="https://alana-lorens.com/tag/mystery/" rel="tag">mystery</a>, <a href="https://alana-lorens.com/tag/queen-anne-houses/" rel="tag">Queen Anne houses</a>, <a href="https://alana-lorens.com/tag/train-robbery/" rel="tag">train robbery</a>, <a href="https://alana-lorens.com/tag/writing/" rel="tag">writing</a><span class="on-date"> on <a href="https://alana-lorens.com/2025/06/14/another-winner-mystery-from-m-s-spencer/" title="7:19 pm" rel="bookmark"><time class="entry-date" datetime="2025-06-14T19:19:55-04:00">June 14, 2025</time></a></span><span class="by-author"> by <span class="author vcard"><a class="url fn n" href="https://alana-lorens.com/author/awalkabout/" title="View all posts by Babs Mountjoy" rel="author">Babs Mountjoy</a></span></span>.
									<a href="https://alana-lorens.com/2025/06/14/another-winner-mystery-from-m-s-spencer/#comments">2 Comments</a>				
							</footer><!-- .entry-meta -->


</article><!-- #post-# .#post-class-# -->

<article id="post-2238" class="post-2238 post type-post status-publish format-standard hentry category-uncategorized tag-alanalorens tag-book-review tag-books tag-fiction tag-reviews tag-suspense tag-thewildrosepress">

			<a href="https://alana-lorens.com/2025/05/21/new-graphics/" rel="bookmark">
	
			<header class="entry-header">

				
				<h1 class="entry-title">New Graphics!</h1>
			</header><!-- .entry-header -->

												</a>
								<div class="entry-content">
					
<figure class="wp-block-image size-large"><img data-attachment-id="2237" data-permalink="https://alana-lorens.com/thriller1200x675alanalorens/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2025/05/thriller1200x675alanalorens.jpg" data-orig-size="1200,675" 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="thriller1200x675alanalorens" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2025/05/thriller1200x675alanalorens.jpg?w=620" loading="lazy" width="620" height="348" src="https://alana-lorens.com/wp-content/uploads/2025/05/thriller1200x675alanalorens.jpg?w=620" alt="" class="wp-image-2237" srcset="https://alana-lorens.com/wp-content/uploads/2025/05/thriller1200x675alanalorens.jpg?w=620 620w, https://alana-lorens.com/wp-content/uploads/2025/05/thriller1200x675alanalorens.jpg?w=150 150w, https://alana-lorens.com/wp-content/uploads/2025/05/thriller1200x675alanalorens.jpg?w=300 300w, https://alana-lorens.com/wp-content/uploads/2025/05/thriller1200x675alanalorens.jpg?w=768 768w, https://alana-lorens.com/wp-content/uploads/2025/05/thriller1200x675alanalorens.jpg?w=1024 1024w, https://alana-lorens.com/wp-content/uploads/2025/05/thriller1200x675alanalorens.jpg 1200w" sizes="(max-width: 620px) 100vw, 620px" /></figure>



<p class="wp-block-paragraph">Have you read these? Check out this recent review of CRUEL CHARADE:</p>



<p class="wp-block-paragraph"><strong>Cruel Charade — One of the best books I’ve read in a looong time!</strong></p>



<p class="wp-block-paragraph"><em>I came across your book Cruel Charade and man… the way you pulled me into Bet’s descent was brutal in the best way possible. It’s raw, emotional, claustrophobic in all the right places — and you layered the mystery with just enough venom that I had to know what was coming next. The tension didn’t let up for a second.</em></p>



<p class="wp-block-paragraph"><em>The way you wrote her pain — physical, emotional, psychological — it wasn’t just there, it lingered. Like smoke after a fire. And the Everglades scene? That felt like waking up in a nightmare with no map out.</em></p>



<p class="wp-block-paragraph"><em>You didn’t go for cheap drama — you made it earn its weight. And damn, you made me feel every step she took trying to climb back out.</em></p>



<p class="wp-block-paragraph"><em>It&#8217;s been a while since I got that can’t-put-this-book-down feeling. Thank you!!!</em></p>



<p class="wp-block-paragraph"><em>The depth, the emotion, the rhythm of the story&#8230; it was all so vivid, it practically directed itself in my head.</em></p>



<p class="wp-block-paragraph">Thanks so much, James Timothy!</p>



<p class="wp-block-paragraph">He was so inspired, he even made a video script:</p>



<p class="wp-block-paragraph"><strong>CINEMATIC TRAILER SCRIPT: <em>Cruel Charade</em> by Alana Lorens</strong><em></em></p>



<hr class="wp-block-separator has-alpha-channel-opacity" />



<p class="wp-block-paragraph"><strong>[0:00 – 0:10]<br></strong>&nbsp;[Dark swamp visuals. A flickering fire glows in the distance. Low rumble of thunder. Slow fade-in of smoke rising from a burned car.]<br>&nbsp;<strong>NARRATOR (calm, haunting):<br></strong>&nbsp;May 16th, 1996. The Everglades. Midnight.<br>&nbsp;One woman wakes up next to a corpse…<br>&nbsp;&#8230;and can’t remember how she got there.</p>



<hr class="wp-block-separator has-alpha-channel-opacity" />



<p class="wp-block-paragraph"><strong>[0:11 – 0:22]<br></strong>&nbsp;[Visuals: A woman stumbling through the swamp, barefoot, dazed. A flash of city lights. A courtroom fades in. A divorce decree lands on a desk.]<br>&nbsp;<strong>NARRATOR:<br></strong>&nbsp;Bet Lenard had already lost everything—her career, her family, her health.<br>&nbsp;But someone decided that wasn’t enough.</p>



<hr class="wp-block-separator has-alpha-channel-opacity" />



<p class="wp-block-paragraph"><strong>[0:23 – 0:35]<br></strong> [Quick cuts: a man screaming in a courtroom, a photo of her children ripped in half, bottles of pills scattered on the floor.]<br> <strong>NARRATOR:<br></strong> Now she’s being framed for a murder she doesn’t remember…and every person in her life might want her dead.</p>



<hr class="wp-block-separator has-alpha-channel-opacity" />



<p class="wp-block-paragraph"><strong>[0:36 – 0:47]<br></strong> [Visuals: A therapist’s office. Bet sits on a couch, broken. The room flickers to scenes of shadows following her, flashing sirens, a judge slamming a gavel.]<br> <strong>NARRATOR:<br></strong> Her only anchor is the voice of her therapist— &#8230;but even sanity comes with a price.</p>



<hr class="wp-block-separator has-alpha-channel-opacity" />



<p class="wp-block-paragraph"><strong>[0:48 – 1:00]<br></strong>&nbsp;[Montage: A man loading a gun. A car speeding through rain. Bet clutching her chest, staring at old photos. A courtroom sketch burns in flames.]<br>&nbsp;<strong>NARRATOR:<br></strong>&nbsp;Was it her bitter ex-husband?<br>&nbsp;A dangerous client?<br>&nbsp;A jealous friend’s revenge?<br>&nbsp;Or someone hiding behind a badge?</p>



<hr class="wp-block-separator has-alpha-channel-opacity" />



<p class="wp-block-paragraph"><strong>[1:01 – 1:15]<br></strong> [Visuals: Bet standing at the edge of a cliff at dawn. Flashbacks overlap: gunshots, betrayal, tears. Slow-motion: a key slips from her hand.]<br> <strong>NARRATOR:<br></strong> Every clue pulls her deeper into a charade of lies,  &#8230;and there’s no escape unless she finds the truth— before it finds her.</p>



<hr class="wp-block-separator has-alpha-channel-opacity" />



<p class="wp-block-paragraph"><strong>[1:16 – 1:30]<br></strong>&nbsp;[Final scene: Bet walks through a dark hallway. Light breaks in at the end. Slow fade to black. Book cover appears.]<br>&nbsp;<strong>NARRATOR:<br></strong>&nbsp;<em>Cruel Charade</em> by Alana Lorens.<br>&nbsp;A psychological descent into survival, suspicion… and the savage price of truth.<br>&nbsp;<strong>AVAILABLE NOW.</strong></p>
									</div><!-- .entry-content -->
			
			<footer class="entry-meta">
				Posted in <a href="https://alana-lorens.com/category/uncategorized/" rel="category tag">Uncategorized</a> and tagged <a href="https://alana-lorens.com/tag/alanalorens/" rel="tag">alanalorens</a>, <a href="https://alana-lorens.com/tag/book-review/" rel="tag">book-review</a>, <a href="https://alana-lorens.com/tag/books/" rel="tag">books</a>, <a href="https://alana-lorens.com/tag/fiction/" rel="tag">fiction</a>, <a href="https://alana-lorens.com/tag/reviews/" rel="tag">reviews</a>, <a href="https://alana-lorens.com/tag/suspense/" rel="tag">suspense</a>, <a href="https://alana-lorens.com/tag/thewildrosepress/" rel="tag">thewildrosepress</a><span class="on-date"> on <a href="https://alana-lorens.com/2025/05/21/new-graphics/" title="2:02 pm" rel="bookmark"><time class="entry-date" datetime="2025-05-21T14:02:24-04:00">May 21, 2025</time></a></span><span class="by-author"> by <span class="author vcard"><a class="url fn n" href="https://alana-lorens.com/author/awalkabout/" title="View all posts by Babs Mountjoy" rel="author">Babs Mountjoy</a></span></span>.
				
							</footer><!-- .entry-meta -->


</article><!-- #post-# .#post-class-# -->

<article id="post-2232" class="post-2232 post type-post status-publish format-standard hentry category-book-series category-contemporary-romance category-guest-post category-romantic-suspense category-suspense-novel tag-alana-lorens tag-appalachia tag-author tag-books tag-danger tag-ella-braeme tag-friends-to-lovers tag-mountain-men tag-romance tag-romantic-suspense tag-women tag-writing">

			<a href="https://alana-lorens.com/2025/04/04/the-latest-from-ella-braeme/" rel="bookmark">
	
			<header class="entry-header">

				
				<h1 class="entry-title">The latest from Ella&nbsp;Braeme!</h1>
			</header><!-- .entry-header -->

												</a>
								<div class="entry-content">
					<div align="center">
<h2>Knocked Up by Her Mountain Man <a href="https://books2read.com/knocked-up-by-her-mountain-man"><img loading="lazy" src="https://ellabraeme.com/images/elkengrovemountainmen/ella-braeme-knocked-up-by-her-mountain-man-400.jpg" width="400" height="587" border="0" /></a></h2>
</div>
<h4>How can I tell the love of my life we’re having a baby if he doesn’t even remember having had sex?</h4>
<p>After a passionate, unforgettable night with my best friend, a tragic accident leaves him with no memory of our fiery connection. As I navigate the complexities of our altered relationship, I&#8217;m grappling with an unexpected pregnancy. Going back to being best friends now is impossible. Can I reignite the spark in his heart before he learns of the baby and feels obligated to stay?</p>
<p><i>Dive into the enthralling world of Knocked Up by Her Mountain Man—a tale brimming with small-town charm and a gentle touch of steam. Experience an emotional journey towards a happily ever after in this standalone installment of the Elken Grove Mountain Men series.</i></p>
<p style="clear: both;text-align: center"><span style="color: #b14b8d">♥</span> surprise baby <span style="color: #b14b8d">♥</span> friends to lovers <span style="color: #b14b8d">♥</span> mountain man <span style="color: #b14b8d">♥</span> Appalachia <span style="color: #b14b8d">♥</span> amnesia <span style="color: #b14b8d">♥</span> small town <span style="color: #b14b8d">♥</span></p>
<h2 style="clear: both;text-align: center">Review quotes</h2>
<p style="clear: both;text-align: center">This is so sweet it hurts.</p>
<p style="clear: both;text-align: center">You will love what happens with these two and the wild love they have for each other.</p>
<p style="clear: both;text-align: center">This is a friends to lovers, second chance love story&#8230;.but with a twist.</p>
<p><a href="https://ellabraeme.com/booklinks/elkengrovemountainmen/knockedup.htm"><img src="https://ellabraeme.com/images/elkengrovemountainmen/ella-braeme-knockedup-banner.png" width="100%" border="0" /></a></p>
<h2>Excerpt of Knocked Up by Her Mountain Man</h2>
<p>Everybody in this town is in on the big, fat secret: I’ve had sex with Finn Winslow, and he’s forgotten all about it.</p>
<div style="text-indent: 15px">
<p>As a result, they are awkward around me. I can’t even blame them. In most places, I guess, I’d be the victim of lewd comments, judging glances, and sexual innuendo. But not in Elken Grove. Here, the townsfolk offer clumsy side-glances and full-on pity.</p>
<p>Take this morning, for example. As usual, I write the special on the board behind the cash register. Stretching my plump, short frame, I carefully chalk today’s special. It’s peanut bar day, a favorite of our customers. Can’t blame them. Together with the sprinkles of dark chocolate and gooey salted caramel, it’s a slice of heaven.</p>
<p>Mr. and Mrs. Hartley, regulars for their daily coffee and pastry, come in. Mrs. Hartley stares at the board as if seeing it for the first time. She opens and closes her mouth a couple of times, reminding me of a carp. I’ve never seen a carp in real life, but this is how it must look. Mr. Hartley gently touches her arm and says to me, in a soothing voice, “We’ll have red velvet muffins, please, dear.”</p>
<p>There is nothing wrong with our red velvet muffins. But since when don’t the Hartleys jump at a chance to get the peanut bar?</p>
<p>Robin, the coffee shop’s owner, looks on, and once the Hartleys are at their usual table by the corner window, takes a closer look at the board. And that’s when I see it, too. “Peenut bar w/dark chocolate and caramel.”</p>
<p>Much less than missing out on a peanut bar, Mr. Hartley would miss a chance for a stupid sexual joke. Instead, he called me “dear” and almost patted my hand. That’s how the folks of Elken Grove treat me now. I know it’s meant to be considerate, but it’s wearing thin.</p>
<p>Robin, taller than me, swiftly erases the offending E.</p>
<p>“Gimme that,” I say. “Your handwriting should not be on promotional boards.”</p>
<p>Robin sighs in mock relief. “She’s talking.”</p>
<p>“What’s that supposed to mean?”</p>
<p>“Lately, you’ve seemed unfocused and unusually quiet. Don’t lose your spunk, girl.”</p>
<p>I huff. My spunk has long since faded. For months now, everybody in this town has felt entitled to discuss intensely private matters with me. Like how sad it was that the night both of Finn’s brothers got married ended this tragically: I finally got together with the man I’ve loved for years, and that’s when the thrift store under my apartment caught fire and the building burned down. We had to jump from the second-floor window, stark naked. Finn badly injured his leg and was whisked away to the hospital and rehab. I haven’t seen him since, haven’t even gotten in touch with him. He’s got memory issues, and the doctor insisted on complete rest and no contact unless he initiates it. Which he hasn’t, but for a few texts. I know he hates writing, and his texts showed that he cared about me, but were disappointingly friendly. He is his usual carefree self, only he doesn’t remember anything about the night of his accident. Which includes having had sex with me.</p>
<p>But Robin is right, I’m letting myself go. I suppress a sigh and resolve to fake it until I make it. I snatch the chalk. “I’m sorry, I’ll just redo the board.”</p>
<p>Robin looks unconvinced. That’s what you get when you’re friends with your boss: well-meant meddling.</p>
<p>Meghan comes in and rattles off her order for the hardware store. As I make her coffees, and we chat about the unusually mild, but rainy March weather, I feel almost normal. When she leaves, she passes a grinning Patty Winslow in the door. My heart starts beating like a drum. I haven’t seen Finn’s mother this happy since before the night of the fire, so maybe she’s bringing good news. Perhaps I finally will be able to talk to Finn.</p>
<p>Patty comes straight for me. She takes my hands in hers and, with tears in her eyes, announces, “He’s coming home. He just called from the road.” A sob escapes her. “He’ll be home this afternoon.”</p>
<p>My knees weaken and tears well up, but my face breaks into the biggest grin ever. He’s coming home!</p>
<p>Patty looks around at the customers present. The Hartleys are here, and Mr. Vance is—they are the biggest gossips in town. Soon everyone will know that Finn is returning.</p>
<p>With a loud voice to make sure everybody hears, she declares, “I spoke with the doctor again, and he stressed how crucial it is for Finn to remember that night on his own. No one is to tell him. He needs to remember by himself.”</p>
<p>I’ve never understood that. Don’t doctors usually encourage patients meeting their friends and family? Talking about what happened? This feels wrong, but my formal education ended when I left high school, so I wouldn’t know anything about amnesia but for what I’ve read about since that night.</p>
<p>Patty turns back to me. “I’m sorry, dear. You’ll have to be patient a little longer. But the doctor is confident that, if you really matter to him, Finn will remember sooner or later.”</p>
<p>What if he doesn’t? Am I not important enough to be remembered?</p>
<p>How can I possibly tell him we’re having a baby when I’m not allowed to remind him we’ve had sex?</p>
</div>
<div style="clear: both;text-align: center">
<p style="clear: both;text-align: center">Read on: <a href="https://books2read.com/knocked-up-by-her-mountain-man" target="_blank" rel="noopener">https://books2read.com/knocked-up-by-her-mountain-man</a></p>
<p style="clear: both;text-align: center"><img loading="lazy" src="https://ellabraeme.com/images/ella-braeme-logo-small.png" width="300" height="300" /></p>
<h2>About the author</h2>
<p>Ella writes sweet&#8217;n&#8217;steamy romances that are meant to provide short vacations from your everyday life. She loves to read, mostly romances, of course, and to putter around in her backyard, forever trying to turn it into a blooming garden. She’s got a dog who is helping greatly with all the garden work by supervising everything Ella does and—for the most part—not digging up her flowers.</p>
<h2>Meet Ella</h2>
<p>Follow Ella on Instagram <a href="https://instagram.com/ellawritesromance" target="_blank" rel="noopener">@ellawritesromance</a></p>
<p>or on BlueSky <a href="https://bsky.app/profile/ellawritesromance.bsky.social" target="_blank" rel="noopener">https://bsky.app/profile/ellawritesromance.bsky.social</a></p>
<p>Sign-up to her emails and get a free novella <a href="https://ellabraeme.com/newsletter.htm" target="_blank" rel="noopener">https://ellabraeme.com/newsletter.htm</a></p>
<p>Visit the website <a href="https://ellabraeme.com" target="_blank" rel="noopener">https://ellabraeme.com</a></p>
<h2 style="clear: both;text-align: center">Other books by Ella Braeme</h2>
<h3 style="clear: both;text-align: center">Contemporary Romance</h3>
<h4 style="clear: both;text-align: center">Elken Grove Mountain Men</h4>
<p style="clear: both;text-align: center"><a href="https://books2read.com/buttingheads" target="_blank" rel="noopener">Butting Heads with Her Mountain Man</a><br />
<a href="https://books2read.com/herrockstar" target="_blank" rel="noopener">Her Rock Star Mountain Man</a><br />
<a href="https://books2read.com/knocked-up-by-her-mountain-man">Knocked Up by the Mountain Man</a></p>
<h3 style="clear: both;text-align: center">Married in Windfall</h3>
<p style="clear: both;text-align: center"><a href="https://books2read.com/niceenough" target="_blank" rel="noopener">Nice Enough</a><br />
<a href="https://books2read.com/anyoneathand" target="_blank" rel="noopener">Anyone at Hand</a><br />
<a href="https://books2read.com/someoneichose" target="_blank" rel="noopener">Someone I Chose</a><br />
<a href="https://books2read.com/santas-proposal" target="_blank" rel="noopener">Santa’s Proposal</a><br />
<a href="https://books2read.com/married-in-windfall" target="_blank" rel="noopener">Married in Windfall</a> (the entire series available as paperback)</p>
<h3 style="clear: both;text-align: center">Suspense Romance</h3>
<h4 style="clear: both;text-align: center">Shielded Hearts</h4>
<p style="clear: both;text-align: center"><a href="https://ellabraeme.com/clint.htm" target="_blank" rel="noopener">Mountain Hideout</a> ← free with sign-up</p>
</div>
									</div><!-- .entry-content -->
			
			<footer class="entry-meta">
				Posted in <a href="https://alana-lorens.com/category/book-series/" rel="category tag">book series</a>, <a href="https://alana-lorens.com/category/contemporary-romance/" rel="category tag">contemporary romance</a>, <a href="https://alana-lorens.com/category/guest-post/" rel="category tag">guest post</a>, <a href="https://alana-lorens.com/category/romantic-suspense/" rel="category tag">romantic suspense</a>, <a href="https://alana-lorens.com/category/suspense-novel/" rel="category tag">suspense novel</a> and tagged <a href="https://alana-lorens.com/tag/alana-lorens/" rel="tag">Alana Lorens</a>, <a href="https://alana-lorens.com/tag/appalachia/" rel="tag">Appalachia</a>, <a href="https://alana-lorens.com/tag/author/" rel="tag">author</a>, <a href="https://alana-lorens.com/tag/books/" rel="tag">books</a>, <a href="https://alana-lorens.com/tag/danger/" rel="tag">danger</a>, <a href="https://alana-lorens.com/tag/ella-braeme/" rel="tag">Ella Braeme</a>, <a href="https://alana-lorens.com/tag/friends-to-lovers/" rel="tag">friends to lovers</a>, <a href="https://alana-lorens.com/tag/mountain-men/" rel="tag">mountain men</a>, <a href="https://alana-lorens.com/tag/romance/" rel="tag">romance</a>, <a href="https://alana-lorens.com/tag/romantic-suspense/" rel="tag">romantic suspense</a>, <a href="https://alana-lorens.com/tag/women/" rel="tag">women</a>, <a href="https://alana-lorens.com/tag/writing/" rel="tag">writing</a><span class="on-date"> on <a href="https://alana-lorens.com/2025/04/04/the-latest-from-ella-braeme/" title="12:14 am" rel="bookmark"><time class="entry-date" datetime="2025-04-04T00:14:00-04:00">April 4, 2025</time></a></span><span class="by-author"> by <span class="author vcard"><a class="url fn n" href="https://alana-lorens.com/author/awalkabout/" title="View all posts by Babs Mountjoy" rel="author">Babs Mountjoy</a></span></span>.
				
							</footer><!-- .entry-meta -->


</article><!-- #post-# .#post-class-# -->

	<nav role="navigation" id="nav-below" class="paging-navigation">
		<h1 class="screen-reader-text">Post navigation</h1>

	
					<div class="nav-previous"><a href="https://alana-lorens.com/page/2/" ><span class="meta-nav">&larr;</span> Older posts</a></div>
		
		
	
	</nav><!-- #nav-below -->

	
		</div><!-- #content .site-content -->

	</div><!-- #primary .content-area -->


	<div id="secondary" class="sidebar-container" role="complementary">
				<div class="widget-area">
			<aside id="search-1" class="widget widget_search"><h3 class="widget-title">Search</h3><form role="search" method="get" class="search-form" action="https://alana-lorens.com/">
				<label>
					<span class="screen-reader-text">Search for:</span>
					<input type="search" class="search-field" placeholder="Search &hellip;" value="" name="s" />
				</label>
				<input type="submit" class="search-submit" value="Search" />
			</form></aside><aside id="rss_links-3" class="widget widget_rss_links"><h3 class="widget-title">Follow me!</h3><ul><li><a href="https://alana-lorens.com/feed/" title="Subscribe to Posts">RSS - Posts</a></li><li><a href="https://alana-lorens.com/comments/feed/" title="Subscribe to Comments">RSS - Comments</a></li></ul>
</aside><aside id="text-1" class="widget widget_text"><h3 class="widget-title">Welcome!</h3>			<div class="textwidget"><p>Alana Lorens is an award-winning author of romantic suspense novels, including the Pittsburgh Lady Lawyer series. She also writes contemporary romance and suspense stories. Explore them on the pages listed above.</p>
</div>
		</aside>
		<aside id="recent-posts-3" class="widget widget_recent_entries">
		<h3 class="widget-title">What I&#8217;ve said</h3>
		<ul>
											<li>
					<a href="https://alana-lorens.com/2026/04/12/an-online-date-goes-bad-and-we-mean-bad-will-help-come/">An online date goes bad&#8211;and we mean bad&#8211;will help&nbsp;come?</a>
									</li>
											<li>
					<a href="https://alana-lorens.com/2026/02/14/ancient-chinese-secrets-lead-to-spice-in-the-kitchen/">Ancient Chinese secrets lead to spice in the&nbsp;kitchen</a>
									</li>
											<li>
					<a href="https://alana-lorens.com/2026/01/11/learning-from-those-whove-lived/">Learning from those who&#8217;ve&nbsp;lived</a>
									</li>
											<li>
					<a href="https://alana-lorens.com/2025/10/19/tomatoes-jam-and-burros/">Tomatoes, jam&#8230;and Burros??</a>
									</li>
											<li>
					<a href="https://alana-lorens.com/2025/09/20/how-30-years-practicing-law-fuels-a-novelists-career-even-if-youre-not-john-grisham/">How 30 years practicing law fuels a novelist’s career, even if you’re not John&nbsp;Grisham</a>
									</li>
					</ul>

		</aside><aside id="facebook-likebox-3" class="widget widget_facebook_likebox"><h3 class="widget-title"><a href="https://www.facebook.com/AlanaLorens/">My Facebook page</a></h3>		<div id="fb-root"></div>
		<div class="fb-page" data-href="https://www.facebook.com/AlanaLorens/" data-width="340"  data-height="432" data-hide-cover="false" data-show-facepile="true" data-tabs="false" data-hide-cta="false" data-small-header="false">
		<div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/AlanaLorens/"><a href="https://www.facebook.com/AlanaLorens/">My Facebook page</a></blockquote></div>
		</div>
		</aside><aside id="blog-stats-3" class="widget widget_blog-stats"><h3 class="widget-title">Blog Stats</h3>		<ul>
			<li>11,781 hits</li>
		</ul>
		</aside><aside id="recent-comments-3" class="widget widget_recent_comments"><h3 class="widget-title">What my readers say</h3>				<table class="recentcommentsavatar" cellspacing="0" cellpadding="0" border="0">
					<tr><td title="Babs Mountjoy" class="recentcommentsavatartop" style="height:48px; width:48px;"><img referrerpolicy="no-referrer" alt='Babs Mountjoy&#039;s avatar' src='https://0.gravatar.com/avatar/3cca1296c808f3df985cc10c18db63467bc9b142188baeae86fb1ed65da03d76?s=48&#038;d=identicon&#038;r=G' srcset='https://0.gravatar.com/avatar/3cca1296c808f3df985cc10c18db63467bc9b142188baeae86fb1ed65da03d76?s=48&#038;d=identicon&#038;r=G 1x, https://0.gravatar.com/avatar/3cca1296c808f3df985cc10c18db63467bc9b142188baeae86fb1ed65da03d76?s=72&#038;d=identicon&#038;r=G 1.5x, https://0.gravatar.com/avatar/3cca1296c808f3df985cc10c18db63467bc9b142188baeae86fb1ed65da03d76?s=96&#038;d=identicon&#038;r=G 2x, https://0.gravatar.com/avatar/3cca1296c808f3df985cc10c18db63467bc9b142188baeae86fb1ed65da03d76?s=144&#038;d=identicon&#038;r=G 3x, https://0.gravatar.com/avatar/3cca1296c808f3df985cc10c18db63467bc9b142188baeae86fb1ed65da03d76?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></td><td class="recentcommentstexttop" style="">Babs Mountjoy on <a href="https://alana-lorens.com/2026/04/12/an-online-date-goes-bad-and-we-mean-bad-will-help-come/comment-page-1/#comment-303">An online date goes bad&#8211;&hellip;</a></td></tr><tr><td title="katyjune80" class="recentcommentsavatarend" style="height:48px; width:48px;"><a href="http://katyeeten.wordpress.com" rel="nofollow"><img referrerpolicy="no-referrer" alt='katyjune80&#039;s avatar' src='https://2.gravatar.com/avatar/5246b7a70dcfdc65ba0589b172ef0adedf185f320160f0866f5129ca9479a99a?s=48&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/5246b7a70dcfdc65ba0589b172ef0adedf185f320160f0866f5129ca9479a99a?s=48&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/5246b7a70dcfdc65ba0589b172ef0adedf185f320160f0866f5129ca9479a99a?s=72&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/5246b7a70dcfdc65ba0589b172ef0adedf185f320160f0866f5129ca9479a99a?s=96&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/5246b7a70dcfdc65ba0589b172ef0adedf185f320160f0866f5129ca9479a99a?s=144&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/5246b7a70dcfdc65ba0589b172ef0adedf185f320160f0866f5129ca9479a99a?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></a></td><td class="recentcommentstextend" style=""><a href="http://katyeeten.wordpress.com" rel="nofollow">katyjune80</a> on <a href="https://alana-lorens.com/2026/04/12/an-online-date-goes-bad-and-we-mean-bad-will-help-come/comment-page-1/#comment-302">An online date goes bad&#8211;&hellip;</a></td></tr><tr><td title="lisabetsarai" class="recentcommentsavatarend" style="height:48px; width:48px;"><a href="http://lisabetsarai.wordpress.com" rel="nofollow"><img referrerpolicy="no-referrer" alt='lisabetsarai&#039;s avatar' src='https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=48&#038;d=identicon&#038;r=G' srcset='https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=48&#038;d=identicon&#038;r=G 1x, https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=72&#038;d=identicon&#038;r=G 1.5x, https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=96&#038;d=identicon&#038;r=G 2x, https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=144&#038;d=identicon&#038;r=G 3x, https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></a></td><td class="recentcommentstextend" style=""><a href="http://lisabetsarai.wordpress.com" rel="nofollow">lisabetsarai</a> on <a href="https://alana-lorens.com/2026/02/14/ancient-chinese-secrets-lead-to-spice-in-the-kitchen/comment-page-1/#comment-301">Ancient Chinese secrets lead t&hellip;</a></td></tr><tr><td title="lisabetsarai" class="recentcommentsavatarend" style="height:48px; width:48px;"><a href="http://lisabetsarai.wordpress.com" rel="nofollow"><img referrerpolicy="no-referrer" alt='lisabetsarai&#039;s avatar' src='https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=48&#038;d=identicon&#038;r=G' srcset='https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=48&#038;d=identicon&#038;r=G 1x, https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=72&#038;d=identicon&#038;r=G 1.5x, https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=96&#038;d=identicon&#038;r=G 2x, https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=144&#038;d=identicon&#038;r=G 3x, https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></a></td><td class="recentcommentstextend" style=""><a href="http://lisabetsarai.wordpress.com" rel="nofollow">lisabetsarai</a> on <a href="https://alana-lorens.com/2026/02/14/ancient-chinese-secrets-lead-to-spice-in-the-kitchen/comment-page-1/#comment-300">Ancient Chinese secrets lead t&hellip;</a></td></tr><tr><td title="lisabetsarai" class="recentcommentsavatarend" style="height:48px; width:48px;"><a href="http://lisabetsarai.wordpress.com" rel="nofollow"><img referrerpolicy="no-referrer" alt='lisabetsarai&#039;s avatar' src='https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=48&#038;d=identicon&#038;r=G' srcset='https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=48&#038;d=identicon&#038;r=G 1x, https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=72&#038;d=identicon&#038;r=G 1.5x, https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=96&#038;d=identicon&#038;r=G 2x, https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=144&#038;d=identicon&#038;r=G 3x, https://1.gravatar.com/avatar/731a2fd8e4b546185cfdd6054af388df31488419c632692bb23f2ddb30b908b0?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></a></td><td class="recentcommentstextend" style=""><a href="http://lisabetsarai.wordpress.com" rel="nofollow">lisabetsarai</a> on <a href="https://alana-lorens.com/2026/02/14/ancient-chinese-secrets-lead-to-spice-in-the-kitchen/comment-page-1/#comment-299">Ancient Chinese secrets lead t&hellip;</a></td></tr>				</table>
				</aside><aside id="wp_tag_cloud-3" class="widget wp_widget_tag_cloud"><h3 class="widget-title">Tags</h3><a href="https://alana-lorens.com/tag/abuse/" class="tag-cloud-link tag-link-5003 tag-link-position-1" style="font-size: 10.608695652174pt;" aria-label="abuse (7 items)">abuse</a>
<a href="https://alana-lorens.com/tag/adventure/" class="tag-cloud-link tag-link-8792 tag-link-position-2" style="font-size: 11.826086956522pt;" aria-label="adventure (10 items)">adventure</a>
<a href="https://alana-lorens.com/tag/alana-lorens/" class="tag-cloud-link tag-link-63251076 tag-link-position-3" style="font-size: 22pt;" aria-label="Alana Lorens (163 items)">Alana Lorens</a>
<a href="https://alana-lorens.com/tag/amber-daulton/" class="tag-cloud-link tag-link-170754618 tag-link-position-4" style="font-size: 8.8695652173913pt;" aria-label="Amber Daulton (4 items)">Amber Daulton</a>
<a href="https://alana-lorens.com/tag/anthology/" class="tag-cloud-link tag-link-43752 tag-link-position-5" style="font-size: 8pt;" aria-label="anthology (3 items)">anthology</a>
<a href="https://alana-lorens.com/tag/australia/" class="tag-cloud-link tag-link-4330 tag-link-position-6" style="font-size: 8pt;" aria-label="Australia (3 items)">Australia</a>
<a href="https://alana-lorens.com/tag/author/" class="tag-cloud-link tag-link-7223 tag-link-position-7" style="font-size: 21.478260869565pt;" aria-label="author (139 items)">author</a>
<a href="https://alana-lorens.com/tag/bdsm/" class="tag-cloud-link tag-link-31994 tag-link-position-8" style="font-size: 8.8695652173913pt;" aria-label="BDSM (4 items)">BDSM</a>
<a href="https://alana-lorens.com/tag/blog/" class="tag-cloud-link tag-link-273 tag-link-position-9" style="font-size: 12.173913043478pt;" aria-label="blog (11 items)">blog</a>
<a href="https://alana-lorens.com/tag/book-review/" class="tag-cloud-link tag-link-7215 tag-link-position-10" style="font-size: 11.04347826087pt;" aria-label="book-review (8 items)">book-review</a>
<a href="https://alana-lorens.com/tag/book-reviews/" class="tag-cloud-link tag-link-3328 tag-link-position-11" style="font-size: 8.8695652173913pt;" aria-label="book-reviews (4 items)">book-reviews</a>
<a href="https://alana-lorens.com/tag/book-hooks/" class="tag-cloud-link tag-link-59809325 tag-link-position-12" style="font-size: 8pt;" aria-label="Book Hooks (3 items)">Book Hooks</a>
<a href="https://alana-lorens.com/tag/books/" class="tag-cloud-link tag-link-178 tag-link-position-13" style="font-size: 20.695652173913pt;" aria-label="books (114 items)">books</a>
<a href="https://alana-lorens.com/tag/book-series/" class="tag-cloud-link tag-link-578189 tag-link-position-14" style="font-size: 8pt;" aria-label="book series (3 items)">book series</a>
<a href="https://alana-lorens.com/tag/brenda-whiteside/" class="tag-cloud-link tag-link-40700620 tag-link-position-15" style="font-size: 8pt;" aria-label="Brenda Whiteside (3 items)">Brenda Whiteside</a>
<a href="https://alana-lorens.com/tag/christian/" class="tag-cloud-link tag-link-2568 tag-link-position-16" style="font-size: 8pt;" aria-label="Christian (3 items)">Christian</a>
<a href="https://alana-lorens.com/tag/christmas/" class="tag-cloud-link tag-link-15607 tag-link-position-17" style="font-size: 8pt;" aria-label="Christmas (3 items)">Christmas</a>
<a href="https://alana-lorens.com/tag/contemporary-romance/" class="tag-cloud-link tag-link-715984 tag-link-position-18" style="font-size: 18.434782608696pt;" aria-label="contemporary romance (62 items)">contemporary romance</a>
<a href="https://alana-lorens.com/tag/contest/" class="tag-cloud-link tag-link-37116 tag-link-position-19" style="font-size: 9.5652173913043pt;" aria-label="contest (5 items)">contest</a>
<a href="https://alana-lorens.com/tag/cynthia-terelst/" class="tag-cloud-link tag-link-693066190 tag-link-position-20" style="font-size: 8.8695652173913pt;" aria-label="Cynthia Terelst (4 items)">Cynthia Terelst</a>
<a href="https://alana-lorens.com/tag/danger/" class="tag-cloud-link tag-link-47618 tag-link-position-21" style="font-size: 18.95652173913pt;" aria-label="danger (71 items)">danger</a>
<a href="https://alana-lorens.com/tag/dark-romance/" class="tag-cloud-link tag-link-7396023 tag-link-position-22" style="font-size: 9.5652173913043pt;" aria-label="dark romance (5 items)">dark romance</a>
<a href="https://alana-lorens.com/tag/domestic-violence/" class="tag-cloud-link tag-link-9807 tag-link-position-23" style="font-size: 12.782608695652pt;" aria-label="domestic violence (13 items)">domestic violence</a>
<a href="https://alana-lorens.com/tag/dragonfly-publishing/" class="tag-cloud-link tag-link-6318554 tag-link-position-24" style="font-size: 8.8695652173913pt;" aria-label="Dragonfly Publishing (4 items)">Dragonfly Publishing</a>
<a href="https://alana-lorens.com/tag/erotic/" class="tag-cloud-link tag-link-26471 tag-link-position-25" style="font-size: 8.8695652173913pt;" aria-label="erotic (4 items)">erotic</a>
<a href="https://alana-lorens.com/tag/erotic-romance/" class="tag-cloud-link tag-link-72777 tag-link-position-26" style="font-size: 10.173913043478pt;" aria-label="erotic romance (6 items)">erotic romance</a>
<a href="https://alana-lorens.com/tag/fantasy/" class="tag-cloud-link tag-link-7224 tag-link-position-27" style="font-size: 8pt;" aria-label="fantasy (3 items)">fantasy</a>
<a href="https://alana-lorens.com/tag/fiction/" class="tag-cloud-link tag-link-1747 tag-link-position-28" style="font-size: 13.478260869565pt;" aria-label="fiction (16 items)">fiction</a>
<a href="https://alana-lorens.com/tag/friends-to-lovers/" class="tag-cloud-link tag-link-9363829 tag-link-position-29" style="font-size: 8.8695652173913pt;" aria-label="friends to lovers (4 items)">friends to lovers</a>
<a href="https://alana-lorens.com/tag/giveaway/" class="tag-cloud-link tag-link-2853 tag-link-position-30" style="font-size: 9.5652173913043pt;" aria-label="giveaway (5 items)">giveaway</a>
<a href="https://alana-lorens.com/tag/historical-romance/" class="tag-cloud-link tag-link-539588 tag-link-position-31" style="font-size: 11.478260869565pt;" aria-label="historical romance (9 items)">historical romance</a>
<a href="https://alana-lorens.com/tag/husband/" class="tag-cloud-link tag-link-9678 tag-link-position-32" style="font-size: 8pt;" aria-label="husband (3 items)">husband</a>
<a href="https://alana-lorens.com/tag/interracial-romance/" class="tag-cloud-link tag-link-1460139 tag-link-position-33" style="font-size: 8pt;" aria-label="interracial romance (3 items)">interracial romance</a>
<a href="https://alana-lorens.com/tag/interview/" class="tag-cloud-link tag-link-11788 tag-link-position-34" style="font-size: 8.8695652173913pt;" aria-label="interview (4 items)">interview</a>
<a href="https://alana-lorens.com/tag/iraq/" class="tag-cloud-link tag-link-1147 tag-link-position-35" style="font-size: 8.8695652173913pt;" aria-label="Iraq (4 items)">Iraq</a>
<a href="https://alana-lorens.com/tag/jana-richards/" class="tag-cloud-link tag-link-29196320 tag-link-position-36" style="font-size: 8.8695652173913pt;" aria-label="Jana Richards (4 items)">Jana Richards</a>
<a href="https://alana-lorens.com/tag/karen-hulene-bartell/" class="tag-cloud-link tag-link-23183168 tag-link-position-37" style="font-size: 8pt;" aria-label="Karen Hulene Bartell (3 items)">Karen Hulene Bartell</a>
<a href="https://alana-lorens.com/tag/lawyer/" class="tag-cloud-link tag-link-146155 tag-link-position-38" style="font-size: 10.173913043478pt;" aria-label="lawyer (6 items)">lawyer</a>
<a href="https://alana-lorens.com/tag/lisabet-sarai/" class="tag-cloud-link tag-link-3091413 tag-link-position-39" style="font-size: 13.04347826087pt;" aria-label="Lisabet Sarai (14 items)">Lisabet Sarai</a>
<a href="https://alana-lorens.com/tag/love/" class="tag-cloud-link tag-link-3785 tag-link-position-40" style="font-size: 20.260869565217pt;" aria-label="love (101 items)">love</a>
<a href="https://alana-lorens.com/tag/love-down-under/" class="tag-cloud-link tag-link-91286720 tag-link-position-41" style="font-size: 8pt;" aria-label="Love Down Under (3 items)">Love Down Under</a>
<a href="https://alana-lorens.com/tag/lyndi-alexander/" class="tag-cloud-link tag-link-40062390 tag-link-position-42" style="font-size: 8pt;" aria-label="Lyndi Alexander (3 items)">Lyndi Alexander</a>
<a href="https://alana-lorens.com/tag/mafia-romance/" class="tag-cloud-link tag-link-128767939 tag-link-position-43" style="font-size: 8pt;" aria-label="mafia romance (3 items)">mafia romance</a>
<a href="https://alana-lorens.com/tag/marketing/" class="tag-cloud-link tag-link-175 tag-link-position-44" style="font-size: 8.8695652173913pt;" aria-label="marketing (4 items)">marketing</a>
<a href="https://alana-lorens.com/tag/marriage/" class="tag-cloud-link tag-link-4550 tag-link-position-45" style="font-size: 8.8695652173913pt;" aria-label="marriage (4 items)">marriage</a>
<a href="https://alana-lorens.com/tag/mfrw-book-hooks/" class="tag-cloud-link tag-link-225201395 tag-link-position-46" style="font-size: 8pt;" aria-label="MFRW Book Hooks (3 items)">MFRW Book Hooks</a>
<a href="https://alana-lorens.com/tag/morality/" class="tag-cloud-link tag-link-38205 tag-link-position-47" style="font-size: 8pt;" aria-label="morality (3 items)">morality</a>
<a href="https://alana-lorens.com/tag/murder/" class="tag-cloud-link tag-link-56681 tag-link-position-48" style="font-size: 8pt;" aria-label="murder (3 items)">murder</a>
<a href="https://alana-lorens.com/tag/mystery/" class="tag-cloud-link tag-link-13078 tag-link-position-49" style="font-size: 11.826086956522pt;" aria-label="mystery (10 items)">mystery</a>
<a href="https://alana-lorens.com/tag/new-orleans/" class="tag-cloud-link tag-link-11107 tag-link-position-50" style="font-size: 8.8695652173913pt;" aria-label="New Orleans (4 items)">New Orleans</a>
<a href="https://alana-lorens.com/tag/novel/" class="tag-cloud-link tag-link-545 tag-link-position-51" style="font-size: 10.173913043478pt;" aria-label="novel (6 items)">novel</a>
<a href="https://alana-lorens.com/tag/novella/" class="tag-cloud-link tag-link-54254 tag-link-position-52" style="font-size: 8.8695652173913pt;" aria-label="novella (4 items)">novella</a>
<a href="https://alana-lorens.com/tag/paranormal-romance/" class="tag-cloud-link tag-link-285247 tag-link-position-53" style="font-size: 9.5652173913043pt;" aria-label="paranormal romance (5 items)">paranormal romance</a>
<a href="https://alana-lorens.com/tag/pirate/" class="tag-cloud-link tag-link-214529 tag-link-position-54" style="font-size: 8pt;" aria-label="pirate (3 items)">pirate</a>
<a href="https://alana-lorens.com/tag/pittsburgh-lady-lawyers/" class="tag-cloud-link tag-link-100320357 tag-link-position-55" style="font-size: 10.608695652174pt;" aria-label="Pittsburgh Lady Lawyers (7 items)">Pittsburgh Lady Lawyers</a>
<a href="https://alana-lorens.com/tag/polyamory/" class="tag-cloud-link tag-link-136113 tag-link-position-56" style="font-size: 8.8695652173913pt;" aria-label="polyamory (4 items)">polyamory</a>
<a href="https://alana-lorens.com/tag/ptsd/" class="tag-cloud-link tag-link-129834 tag-link-position-57" style="font-size: 9.5652173913043pt;" aria-label="PTSD (5 items)">PTSD</a>
<a href="https://alana-lorens.com/tag/reading/" class="tag-cloud-link tag-link-1473 tag-link-position-58" style="font-size: 11.478260869565pt;" aria-label="reading (9 items)">reading</a>
<a href="https://alana-lorens.com/tag/romance/" class="tag-cloud-link tag-link-8154 tag-link-position-59" style="font-size: 20.95652173913pt;" aria-label="romance (122 items)">romance</a>
<a href="https://alana-lorens.com/tag/romantic-suspense/" class="tag-cloud-link tag-link-72780 tag-link-position-60" style="font-size: 11.826086956522pt;" aria-label="romantic suspense (10 items)">romantic suspense</a>
<a href="https://alana-lorens.com/tag/safety/" class="tag-cloud-link tag-link-14812 tag-link-position-61" style="font-size: 8.8695652173913pt;" aria-label="safety (4 items)">safety</a>
<a href="https://alana-lorens.com/tag/seelie-kay/" class="tag-cloud-link tag-link-570644018 tag-link-position-62" style="font-size: 8.8695652173913pt;" aria-label="Seelie Kay (4 items)">Seelie Kay</a>
<a href="https://alana-lorens.com/tag/silver-dagger-tours/" class="tag-cloud-link tag-link-560610592 tag-link-position-63" style="font-size: 10.173913043478pt;" aria-label="Silver Dagger Tours (6 items)">Silver Dagger Tours</a>
<a href="https://alana-lorens.com/tag/story/" class="tag-cloud-link tag-link-2622 tag-link-position-64" style="font-size: 11.478260869565pt;" aria-label="story (9 items)">story</a>
<a href="https://alana-lorens.com/tag/supernatural/" class="tag-cloud-link tag-link-33102 tag-link-position-65" style="font-size: 11.04347826087pt;" aria-label="supernatural (8 items)">supernatural</a>
<a href="https://alana-lorens.com/tag/suspense/" class="tag-cloud-link tag-link-8811 tag-link-position-66" style="font-size: 12.782608695652pt;" aria-label="suspense (13 items)">suspense</a>
<a href="https://alana-lorens.com/tag/the-wild-rose-press/" class="tag-cloud-link tag-link-2577842 tag-link-position-67" style="font-size: 12.782608695652pt;" aria-label="The Wild Rose Press (13 items)">The Wild Rose Press</a>
<a href="https://alana-lorens.com/tag/thriller/" class="tag-cloud-link tag-link-11183 tag-link-position-68" style="font-size: 10.608695652174pt;" aria-label="thriller (7 items)">thriller</a>
<a href="https://alana-lorens.com/tag/tina-donahue/" class="tag-cloud-link tag-link-28219047 tag-link-position-69" style="font-size: 8.8695652173913pt;" aria-label="Tina Donahue (4 items)">Tina Donahue</a>
<a href="https://alana-lorens.com/tag/vampire/" class="tag-cloud-link tag-link-40844 tag-link-position-70" style="font-size: 8.8695652173913pt;" aria-label="vampire (4 items)">vampire</a>
<a href="https://alana-lorens.com/tag/wife/" class="tag-cloud-link tag-link-6295 tag-link-position-71" style="font-size: 10.173913043478pt;" aria-label="wife (6 items)">wife</a>
<a href="https://alana-lorens.com/tag/woman/" class="tag-cloud-link tag-link-62953 tag-link-position-72" style="font-size: 10.173913043478pt;" aria-label="woman (6 items)">woman</a>
<a href="https://alana-lorens.com/tag/women/" class="tag-cloud-link tag-link-598 tag-link-position-73" style="font-size: 19.478260869565pt;" aria-label="women (83 items)">women</a>
<a href="https://alana-lorens.com/tag/writer/" class="tag-cloud-link tag-link-15440 tag-link-position-74" style="font-size: 12.434782608696pt;" aria-label="writer (12 items)">writer</a>
<a href="https://alana-lorens.com/tag/writing/" class="tag-cloud-link tag-link-349 tag-link-position-75" style="font-size: 21.304347826087pt;" aria-label="writing (135 items)">writing</a></aside><aside id="archives-3" class="widget widget_archive"><h3 class="widget-title">Archives</h3>
			<ul>
					<li><a href='https://alana-lorens.com/2026/04/'>April 2026</a></li>
	<li><a href='https://alana-lorens.com/2026/02/'>February 2026</a></li>
	<li><a href='https://alana-lorens.com/2026/01/'>January 2026</a></li>
	<li><a href='https://alana-lorens.com/2025/10/'>October 2025</a></li>
	<li><a href='https://alana-lorens.com/2025/09/'>September 2025</a></li>
	<li><a href='https://alana-lorens.com/2025/08/'>August 2025</a></li>
	<li><a href='https://alana-lorens.com/2025/07/'>July 2025</a></li>
	<li><a href='https://alana-lorens.com/2025/06/'>June 2025</a></li>
	<li><a href='https://alana-lorens.com/2025/05/'>May 2025</a></li>
	<li><a href='https://alana-lorens.com/2025/04/'>April 2025</a></li>
	<li><a href='https://alana-lorens.com/2025/03/'>March 2025</a></li>
	<li><a href='https://alana-lorens.com/2025/02/'>February 2025</a></li>
	<li><a href='https://alana-lorens.com/2025/01/'>January 2025</a></li>
	<li><a href='https://alana-lorens.com/2024/12/'>December 2024</a></li>
	<li><a href='https://alana-lorens.com/2024/11/'>November 2024</a></li>
	<li><a href='https://alana-lorens.com/2024/10/'>October 2024</a></li>
	<li><a href='https://alana-lorens.com/2024/09/'>September 2024</a></li>
	<li><a href='https://alana-lorens.com/2024/08/'>August 2024</a></li>
	<li><a href='https://alana-lorens.com/2024/07/'>July 2024</a></li>
	<li><a href='https://alana-lorens.com/2024/05/'>May 2024</a></li>
	<li><a href='https://alana-lorens.com/2024/04/'>April 2024</a></li>
	<li><a href='https://alana-lorens.com/2024/03/'>March 2024</a></li>
	<li><a href='https://alana-lorens.com/2024/02/'>February 2024</a></li>
	<li><a href='https://alana-lorens.com/2024/01/'>January 2024</a></li>
	<li><a href='https://alana-lorens.com/2023/12/'>December 2023</a></li>
	<li><a href='https://alana-lorens.com/2023/11/'>November 2023</a></li>
	<li><a href='https://alana-lorens.com/2023/10/'>October 2023</a></li>
	<li><a href='https://alana-lorens.com/2023/09/'>September 2023</a></li>
	<li><a href='https://alana-lorens.com/2023/08/'>August 2023</a></li>
	<li><a href='https://alana-lorens.com/2023/07/'>July 2023</a></li>
	<li><a href='https://alana-lorens.com/2023/05/'>May 2023</a></li>
	<li><a href='https://alana-lorens.com/2023/04/'>April 2023</a></li>
	<li><a href='https://alana-lorens.com/2023/03/'>March 2023</a></li>
	<li><a href='https://alana-lorens.com/2023/02/'>February 2023</a></li>
	<li><a href='https://alana-lorens.com/2022/10/'>October 2022</a></li>
	<li><a href='https://alana-lorens.com/2022/09/'>September 2022</a></li>
	<li><a href='https://alana-lorens.com/2022/08/'>August 2022</a></li>
	<li><a href='https://alana-lorens.com/2022/07/'>July 2022</a></li>
	<li><a href='https://alana-lorens.com/2022/06/'>June 2022</a></li>
	<li><a href='https://alana-lorens.com/2022/05/'>May 2022</a></li>
	<li><a href='https://alana-lorens.com/2022/04/'>April 2022</a></li>
	<li><a href='https://alana-lorens.com/2022/03/'>March 2022</a></li>
	<li><a href='https://alana-lorens.com/2022/02/'>February 2022</a></li>
	<li><a href='https://alana-lorens.com/2022/01/'>January 2022</a></li>
	<li><a href='https://alana-lorens.com/2021/12/'>December 2021</a></li>
	<li><a href='https://alana-lorens.com/2021/11/'>November 2021</a></li>
	<li><a href='https://alana-lorens.com/2021/10/'>October 2021</a></li>
	<li><a href='https://alana-lorens.com/2021/09/'>September 2021</a></li>
	<li><a href='https://alana-lorens.com/2021/08/'>August 2021</a></li>
	<li><a href='https://alana-lorens.com/2021/07/'>July 2021</a></li>
	<li><a href='https://alana-lorens.com/2021/06/'>June 2021</a></li>
	<li><a href='https://alana-lorens.com/2021/05/'>May 2021</a></li>
	<li><a href='https://alana-lorens.com/2021/04/'>April 2021</a></li>
	<li><a href='https://alana-lorens.com/2021/03/'>March 2021</a></li>
	<li><a href='https://alana-lorens.com/2021/02/'>February 2021</a></li>
	<li><a href='https://alana-lorens.com/2021/01/'>January 2021</a></li>
	<li><a href='https://alana-lorens.com/2020/12/'>December 2020</a></li>
	<li><a href='https://alana-lorens.com/2020/11/'>November 2020</a></li>
	<li><a href='https://alana-lorens.com/2020/10/'>October 2020</a></li>
	<li><a href='https://alana-lorens.com/2020/09/'>September 2020</a></li>
	<li><a href='https://alana-lorens.com/2020/08/'>August 2020</a></li>
	<li><a href='https://alana-lorens.com/2020/07/'>July 2020</a></li>
	<li><a href='https://alana-lorens.com/2020/06/'>June 2020</a></li>
	<li><a href='https://alana-lorens.com/2020/05/'>May 2020</a></li>
	<li><a href='https://alana-lorens.com/2020/04/'>April 2020</a></li>
	<li><a href='https://alana-lorens.com/2020/03/'>March 2020</a></li>
	<li><a href='https://alana-lorens.com/2020/02/'>February 2020</a></li>
	<li><a href='https://alana-lorens.com/2020/01/'>January 2020</a></li>
	<li><a href='https://alana-lorens.com/2019/12/'>December 2019</a></li>
	<li><a href='https://alana-lorens.com/2019/10/'>October 2019</a></li>
	<li><a href='https://alana-lorens.com/2019/07/'>July 2019</a></li>
	<li><a href='https://alana-lorens.com/2019/06/'>June 2019</a></li>
	<li><a href='https://alana-lorens.com/2019/05/'>May 2019</a></li>
	<li><a href='https://alana-lorens.com/2019/04/'>April 2019</a></li>
	<li><a href='https://alana-lorens.com/2019/03/'>March 2019</a></li>
	<li><a href='https://alana-lorens.com/2019/02/'>February 2019</a></li>
	<li><a href='https://alana-lorens.com/2018/02/'>February 2018</a></li>
	<li><a href='https://alana-lorens.com/2017/11/'>November 2017</a></li>
	<li><a href='https://alana-lorens.com/2017/09/'>September 2017</a></li>
	<li><a href='https://alana-lorens.com/2017/08/'>August 2017</a></li>
			</ul>

			</aside><aside id="follow_button_widget-3" class="widget widget_follow_button_widget">
		<a class="wordpress-follow-button" href="https://alana-lorens.com" data-blog="134210132" data-lang="en" >Follow Alana Lorens, author on WordPress.com</a>
		<script type="text/javascript">(function(d){ window.wpcomPlatform = {"titles":{"timelines":"Embeddable Timelines","followButton":"Follow Button","wpEmbeds":"WordPress Embeds"}}; var f = d.getElementsByTagName('SCRIPT')[0], p = d.createElement('SCRIPT');p.type = 'text/javascript';p.async = true;p.src = '//widgets.wp.com/platform.js';f.parentNode.insertBefore(p,f);}(document));</script>

		</aside><aside id="wpcom-goodreads-3" class="widget widget_goodreads"><h3 class="widget-title">Goodreads</h3><div class="jetpack-goodreads-legacy-widget gr_custom_widget" id="gr_custom_widget_4829967_read"></div>
<script src="https://www.goodreads.com/review/custom_widget/4829967.Goodreads:%20read?cover_position=&#038;cover_size=small&#038;num_books=5&#038;order=d&#038;shelf=read&#038;sort=date_added&#038;widget_bg_transparent=&#038;widget_id=4829967_read"></script>
</aside><aside id="media_image-3" class="widget widget_media_image"><style>.widget.widget_media_image { overflow: hidden; }.widget.widget_media_image img { height: auto; max-width: 100%; }</style><a href="https://marketingforromancewriters.org/"><img width="1080" height="1080" src="https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg?w=1080" class="image wp-image-2034  attachment-1080x1080 size-1080x1080" alt="" style="max-width: 100%; height: auto;" decoding="async" loading="lazy" srcset="https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg 1080w, https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg?w=150 150w, https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg?w=300 300w, https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg?w=768 768w, https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg?w=1024 1024w" sizes="(max-width: 1080px) 100vw, 1080px" data-attachment-id="2034" data-permalink="https://alana-lorens.com/2024/07/10/a-broken-family-and-intrigue-on-the-hot-deadly-streets-of-1996-miami-mfrwhooks/mfrw-roses-pearls-sq-2/" data-orig-file="https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg" data-orig-size="1080,1080" 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="mfrw-roses-pearls-sq" data-image-description="" data-image-caption="" data-large-file="https://alana-lorens.com/wp-content/uploads/2024/07/mfrw-roses-pearls-sq.jpg?w=620" /></a></aside>		</div><!-- .widget-area -->
	</div><!-- #secondary .sidebar-container -->


		</div><!-- #main .site-main -->

		<footer id="colophon" class="site-footer" role="contentinfo">
			
			<div class="site-info-container">

				<div class="site-info">
										<a href="https://wordpress.com/?ref=footer_blog" rel="nofollow">Blog at WordPress.com.</a>
									</div><!-- .site-info -->

			</div><!-- .site-info-container -->

		</footer><!-- #colophon .site-footer -->

	</div><!-- #page -->

		<script type="text/javascript">
		var infiniteScroll = {"settings":{"id":"content","ajaxurl":"https://alana-lorens.com/?infinity=scrolling","type":"scroll","wrapper":true,"wrapper_class":"infinite-wrap","footer":"page","click_handle":"1","text":"Older posts","totop":"Scroll back to top","currentday":"04.04.25","order":"DESC","scripts":[],"styles":[],"google_analytics":false,"offset":1,"history":{"host":"alana-lorens.com","path":"/page/%d/","use_trailing_slashes":true,"parameters":""},"query_args":{"error":"","m":"","p":0,"post_parent":"","subpost":"","subpost_id":"","attachment":"","attachment_id":0,"name":"","pagename":"","page_id":0,"second":"","minute":"","hour":"","day":0,"monthnum":0,"year":0,"w":0,"category_name":"","tag":"","cat":"","tag_id":"","author":"","author_name":"","feed":"","tb":"","paged":0,"meta_key":"","meta_value":"","preview":"","s":"","sentence":"","title":"","fields":"all","menu_order":"","embed":"","category__in":[],"category__not_in":[],"category__and":[],"post__in":[],"post__not_in":[],"post_name__in":[],"tag__in":[],"tag__not_in":[],"tag__and":[],"tag_slug__in":[],"tag_slug__and":[],"post_parent__in":[],"post_parent__not_in":[],"author__in":[],"author__not_in":[],"search_columns":[],"lazy_load_term_meta":false,"posts_per_page":10,"ignore_sticky_posts":false,"suppress_filters":false,"cache_results":true,"update_post_term_cache":true,"update_menu_item_cache":false,"update_post_meta_cache":true,"post_type":"","nopaging":false,"comments_per_page":"50","no_found_rows":false,"order":"DESC"},"query_before":"2026-06-10 18:19:41","last_post_date":"2025-04-04 00:14:00","body_class":"infinite-scroll neverending","loading_text":"Loading new page","stats":"blog=134210132\u0026v=wpcom\u0026tz=-4\u0026user_id=0\u0026arch_home=1\u0026subd=alanalorenscom\u0026x_pagetype=infinite"}};
		</script>
		<!--  -->
<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/pub/suits/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</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-3c676354cfed95034b90a8e176c883d7">
	</div>
	<div class="grofile-hash-map-6d24574ab374a298ab53a9bb84dbf550">
	</div>
	<div class="grofile-hash-map-4659f244f2faaeb1ed58543bdbef5d9f">
	</div>
	</div>
		<div id="infinite-footer">
			<div class="container">
				<div class="blog-info">
					<a id="infinity-blog-title" href="https://alana-lorens.com/" rel="home">
						Alana Lorens, author					</a>
				</div>
				<div class="blog-credits">
					<a href="https://wordpress.com/?ref=footer_blog" rel="nofollow">Blog at WordPress.com.</a> 				</div>
			</div>
		</div><!-- #infinite-footer -->
				<div id="actionbar" dir="ltr" style="display: none;"
			class="actnbr-pub-suits 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://alana-lorens.com">
				<img loading='lazy' alt='' src='https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=50' srcset='https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=50 1x, https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=75 1.5x, https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=100 2x, https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=150 3x, https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=200 4x' class='avatar avatar-50' height='50' width='50' />				Alana Lorens, author			</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 74 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="134210132" />
										<input type="hidden" name="source" value="https://alana-lorens.com/" />
										<input type="hidden" name="sub-type" value="actionbar-follow" />
										<input type="hidden" id="_wpnonce" name="_wpnonce" value="cc7b95a351" />										<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%252Falana-lorens.com%252F2026%252F04%252F12%252Fan-online-date-goes-bad-and-we-mean-bad-will-help-come%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://alana-lorens.com">
				<img loading='lazy' alt='' src='https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=50' srcset='https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=50 1x, https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=75 1.5x, https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=100 2x, https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=150 3x, https://alana-lorens.com/wp-content/uploads/2017/08/cropped-romance-cover.jpg?w=200 4x' class='avatar avatar-50' height='50' width='50' />				Alana Lorens, author			</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%252Falana-lorens.com%252F2026%252F04%252F12%252Fan-online-date-goes-bad-and-we-mean-bad-will-help-come%252F">Log in</a></li>
															<li class="flb-report">
									<a href="https://wordpress.com/abuse/?report_url=https://alana-lorens.com" target="_blank" rel="noopener noreferrer">
										Report this content									</a>
								</li>
															<li class="actnbr-reader">
									<a href="https://wordpress.com/reader/feeds/70156774">
										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>

			<div id="jp-carousel-loading-overlay">
			<div id="jp-carousel-loading-wrapper">
				<span id="jp-carousel-library-loading"><svg class="jetpack-spinner" width="40" height="40" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><circle cx="50" cy="50" r="46" fill="none" stroke="#ddd" stroke-width="8"/><path d="M 50 4 A 46 46 0 0 1 96 50" fill="none" stroke="currentColor" stroke-width="8" stroke-linecap="round"><animateTransform attributeName="transform" type="rotate" dur="1.4s" from="0 50 50" to="360 50 50" repeatCount="indefinite"/></path></svg></span>
			</div>
		</div>
		<div class="jp-carousel-overlay" style="display: none;">

		<div class="jp-carousel-container">
			<!-- The Carousel Swiper -->
			<div
				class="jp-carousel-wrap swiper jp-carousel-swiper-container jp-carousel-transitions"
				itemscope
				itemtype="https://schema.org/ImageGallery">
				<div class="jp-carousel swiper-wrapper"></div>
				<div class="jp-swiper-button-prev swiper-button-prev">
					<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskPrev" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="9" height="12">
							<path d="M16.2072 16.59L11.6496 12L16.2072 7.41L14.8041 6L8.8335 12L14.8041 18L16.2072 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskPrev)">
							<rect x="0.579102" width="23.8823" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
				<div class="jp-swiper-button-next swiper-button-next">
					<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskNext" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="8" height="12">
							<path d="M8.59814 16.59L13.1557 12L8.59814 7.41L10.0012 6L15.9718 12L10.0012 18L8.59814 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskNext)">
							<rect x="0.34375" width="23.8822" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
			</div>
			<!-- The main close buton -->
			<div class="jp-carousel-close-hint">
				<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
					<mask id="maskClose" mask-type="alpha" maskUnits="userSpaceOnUse" x="5" y="5" width="15" height="14">
						<path d="M19.3166 6.41L17.9135 5L12.3509 10.59L6.78834 5L5.38525 6.41L10.9478 12L5.38525 17.59L6.78834 19L12.3509 13.41L17.9135 19L19.3166 17.59L13.754 12L19.3166 6.41Z" fill="white"/>
					</mask>
					<g mask="url(#maskClose)">
						<rect x="0.409668" width="23.8823" height="24" fill="#FFFFFF"/>
					</g>
				</svg>
			</div>
			<!-- Image info, comments and meta -->
			<div class="jp-carousel-info">
				<div class="jp-carousel-info-footer">
					<div class="jp-carousel-pagination-container">
						<div class="jp-swiper-pagination swiper-pagination"></div>
						<div class="jp-carousel-pagination"></div>
					</div>
					<div class="jp-carousel-photo-title-container">
						<h2 class="jp-carousel-photo-caption"></h2>
					</div>
					<div class="jp-carousel-photo-icons-container">
						<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-info" aria-label="Toggle photo metadata visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskInfo" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7537 2C7.26076 2 2.80273 6.48 2.80273 12C2.80273 17.52 7.26076 22 12.7537 22C18.2466 22 22.7046 17.52 22.7046 12C22.7046 6.48 18.2466 2 12.7537 2ZM11.7586 7V9H13.7488V7H11.7586ZM11.7586 11V17H13.7488V11H11.7586ZM4.79292 12C4.79292 16.41 8.36531 20 12.7537 20C17.142 20 20.7144 16.41 20.7144 12C20.7144 7.59 17.142 4 12.7537 4C8.36531 4 4.79292 7.59 4.79292 12Z" fill="white"/>
									</mask>
									<g mask="url(#maskInfo)">
										<rect x="0.8125" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
							</span>
						</a>
												<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-comments" aria-label="Toggle photo comments visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskComments" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M4.3271 2H20.2486C21.3432 2 22.2388 2.9 22.2388 4V16C22.2388 17.1 21.3432 18 20.2486 18H6.31729L2.33691 22V4C2.33691 2.9 3.2325 2 4.3271 2ZM6.31729 16H20.2486V4H4.3271V18L6.31729 16Z" fill="white"/>
									</mask>
									<g mask="url(#maskComments)">
										<rect x="0.34668" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>

								<span class="jp-carousel-has-comments-indicator" aria-label="This image has comments."></span>
							</span>
						</a>
											</div>
				</div>
				<div class="jp-carousel-info-extra">
					<div class="jp-carousel-info-content-wrapper">
						<div class="jp-carousel-photo-title-container">
							<h2 class="jp-carousel-photo-title"></h2>
						</div>
						<div class="jp-carousel-comments-wrapper">
															<div id="jp-carousel-comments-loading">
									<span>Loading Comments...</span>
								</div>
								<div class="jp-carousel-comments"></div>
								<div id="jp-carousel-comment-form-container">
									<span id="jp-carousel-comment-form-spinner"><svg class="jetpack-spinner" width="20" height="20" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><circle cx="50" cy="50" r="46" fill="none" stroke="#ddd" stroke-width="8"/><path d="M 50 4 A 46 46 0 0 1 96 50" fill="none" stroke="currentColor" stroke-width="8" stroke-linecap="round"><animateTransform attributeName="transform" type="rotate" dur="1.4s" from="0 50 50" to="360 50 50" repeatCount="indefinite"/></path></svg></span>
									<div id="jp-carousel-comment-post-results"></div>
																														<form id="jp-carousel-comment-form">
												<label for="jp-carousel-comment-form-comment-field" class="screen-reader-text">Write a Comment...</label>
												<textarea
													name="comment"
													class="jp-carousel-comment-form-field jp-carousel-comment-form-textarea"
													id="jp-carousel-comment-form-comment-field"
													placeholder="Write a Comment..."
												></textarea>
												<div id="jp-carousel-comment-form-submit-and-info-wrapper">
													<div id="jp-carousel-comment-form-commenting-as">
																													<fieldset>
																<label for="jp-carousel-comment-form-email-field">Email (Required)</label>
																<input type="text" name="email" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-email-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-author-field">Name (Required)</label>
																<input type="text" name="author" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-author-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-url-field">Website</label>
																<input type="text" name="url" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-url-field" />
															</fieldset>
																											</div>
													<input
														type="submit"
														name="submit"
														class="jp-carousel-comment-form-button"
														id="jp-carousel-comment-form-button-submit"
														value="Post Comment" />
												</div>
											</form>
																											</div>
													</div>
						<div class="jp-carousel-image-meta">
							<div class="jp-carousel-title-and-caption">
								<div class="jp-carousel-photo-info">
									<h3 class="jp-carousel-caption" itemprop="caption description"></h3>
								</div>

								<div class="jp-carousel-photo-description"></div>
							</div>
							<ul class="jp-carousel-image-exif" style="display: none;"></ul>
							<a class="jp-carousel-image-download" href="#" target="_blank" style="display: none;">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="3" y="3" width="19" height="18">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M5.84615 5V19H19.7775V12H21.7677V19C21.7677 20.1 20.8721 21 19.7775 21H5.84615C4.74159 21 3.85596 20.1 3.85596 19V5C3.85596 3.9 4.74159 3 5.84615 3H12.8118V5H5.84615ZM14.802 5V3H21.7677V10H19.7775V6.41L9.99569 16.24L8.59261 14.83L18.3744 5H14.802Z" fill="white"/>
									</mask>
									<g mask="url(#mask0)">
										<rect x="0.870605" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
								<span class="jp-carousel-download-text"></span>
							</a>
							<div class="jp-carousel-image-map" style="display: none;"></div>
						</div>
					</div>
				</div>
			</div>
		</div>

		</div>
		
	<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="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 id="jetpack-facebook-embed-js-extra">
var jpfbembed = {"appid":"249643311490","locale":"en_US"};
//# sourceURL=jetpack-facebook-embed-js-extra
</script>
<script id="jetpack-carousel-js-extra">
var jetpackSwiperLibraryPath = {"url":"/wp-content/mu-plugins/jetpack-plugin/sun/_inc/blocks/swiper.js"};
var jetpackCarouselStrings = {"widths":[370,700,1000,1200,1400,2000],"is_logged_in":"","lang":"en","ajaxurl":"https://alana-lorens.com/wp-admin/admin-ajax.php","nonce":"8117f38a9c","display_exif":"1","display_comments":"1","single_image_gallery":"1","single_image_gallery_media_file":"","background_color":"black","comment":"Comment","post_comment":"Post Comment","write_comment":"Write a Comment...","loading_comments":"Loading Comments...","image_label":"Open image in full-screen.","download_original":"View full size \u003Cspan class=\"photo-size\"\u003E{0}\u003Cspan class=\"photo-size-times\"\u003E\u00d7\u003C/span\u003E{1}\u003C/span\u003E","no_comment_text":"Please be sure to submit some text with your comment.","no_comment_email":"Please provide an email address to comment.","no_comment_author":"Please provide your name to comment.","comment_post_error":"Sorry, but there was an error posting your comment. Please try again later.","comment_approved":"Your comment was approved.","comment_unapproved":"Your comment is in moderation.","camera":"Camera","aperture":"Aperture","shutter_speed":"Shutter Speed","focal_length":"Focal Length","copyright":"Copyright","comment_registration":"0","require_name_email":"1","login_url":"https://alanalorenscom.wordpress.com/wp-login.php?redirect_to=https%3A%2F%2Falana-lorens.com%2F2026%2F04%2F12%2Fan-online-date-goes-bad-and-we-mean-bad-will-help-come%2F","blog_id":"134210132","meta_data":["camera","aperture","shutter_speed","focal_length","copyright"],"stats_query_args":"blog=134210132&v=wpcom&tz=-4&user_id=0&arch_home=1&subd=alanalorenscom","is_public":"1"};
//# sourceURL=jetpack-carousel-js-extra
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/_static/??-eJydkNFuwjAMRX9oickEoi/TPmVqXJe5TeyoTkD8PSDoNqE9THu81vGRr+FUHKpUkgq5uZLagcVgolp6nB8ZrAl8sCDExmkAlpGFKznDRVNa89lnFj/ZC/yQrkbUmBRng1cfOh+ccS6J3EJHv4WBrcL0Dbmk/UDLb776SZkMSovXq7jabW1sgpVV7Bn+Q6OxR4qqs6McafiH4P4S7BdtRukLWwePDu/5Ley7zS5su32YLkoWikU='></script>
<script data-wp-strategy="defer" defer id="tiled-gallery-js" src="/wp-content/mu-plugins/jetpack-plugin/sun/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.js?m=1755011788i&#038;ver=16.0-a.0"></script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/mu-plugins/carousel-wpcom/carousel-wpcom.js?m=1761899756i'></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>
		<script type="text/javascript">
			(function() {
				var extend = function(out) {
					out = out || {};

					for (var i = 1; i < arguments.length; i++) {
						if (!arguments[i])
						continue;

						for (var key in arguments[i]) {
						if (arguments[i].hasOwnProperty(key))
							out[key] = arguments[i][key];
						}
					}

					return out;
				};
				extend( window.infiniteScroll.settings.scripts, ["jetpack-mu-wpcom-settings","rlt-proxy","jquery-core","jquery-migrate","jquery","wpcom-actionbar-placeholder","grofiles-cards","wpgroho","the-neverending-homepage","coblocks-loader","suits-script","jetpack-facebook-embed","jetpack-carousel","tiled-gallery","carousel-wpcom"] );
				extend( window.infiniteScroll.settings.styles, ["the-neverending-homepage","coblocks-frontend","wpcom-core-compat-playlist-styles","wpcom-text-widget-styles","wpcom-bbpress2-staff-css","suits-style","reblogging","geo-location-flair","a8c-global-print","h4-global","wp-emoji-styles","wp-block-library","classic-theme-styles","wp-block-styles-placeholder","wp-global-styles-placeholder","suits-font","jetpack_facebook_likebox","jetpack-global-styles-frontend-style","wp-block-separator","wp-block-image","wp-block-paragraph","global-styles","jetpack-swiper-library","jetpack-carousel","goodreads-widget","tiled-gallery","core-block-supports-duotone"] );
			})();
		</script>
				<span id="infinite-aria" aria-live="polite"></span>
		<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':'134210132','blog_tz':'-4','user_lang':'en','blog_lang':'en','user_id':'0'}]);
		// Prevent sending pageview tracking from WP-Admin pages.
		_stq.push(['view', {'blog':'134210132','v':'wpcom','tz':'-4','user_id':'0','arch_home':'1','subd':'alanalorenscom'}]);
		_stq.push(['extra', {'crypt':'UE5tW3cvZGRmSUtiM0o9cVRdTTV3M244LDJQYXNrd0F0PTcrMENpOUpxTTZrWmtTdHpYfH5CZzAtVXxxLEhORmomRTN8RWszTDZjLWJXVncxbGZLWVZZNkxwS09WQUN1MD0rZC03LCV8RmtNZmpHQjlCTEd5VUFtQV0zWDJ8ZDFkTmlCcks4bHRMRTdSYkZCOG5zX2djMlVOZ2UtVG04RDFBVEsuJn55SC9GT0svWExzQm9ld18xW1hzVWp5NStjfkxzREt6X0ptYn44Umk0Lm9XY3NdendDMTgvd2JIVlhFeWZdRm0wSEdbXz8mcmx6bDkzVFhleFdtVkYxY2Q/MH5RVThtN1BRcDhEYX40OGUxSiw='}]);
_stq.push([ 'clickTrackerInit', '134210132', '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/New_York" data-custom-props="{&quot;enq_jquery&quot;:&quot;1&quot;,&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;pub\/suits&quot;,&quot;wptheme_is_block&quot;:&quot;0&quot;}"  >
		<script defer src="/wp-content/js/bilmur.min.js?i=17&amp;m=202624"></script> 	
</body>
</html>
<!--
	generated in 0.259 seconds
	265553 bytes batcached for 300 seconds
-->
