.block-latest-book {
	max-width: 898px !important; /* designs show it narrower than normal */
}

.editor-styles-wrapper .block-latest-book {
	outline: 1px dashed var(--wp--preset--color--primary);
}

.block-latest-book__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
	aspect-ratio: auto !important;
}

.block-latest-book__content {
	background: var(--wp--preset--color--background);
	padding: var(--wp--custom--layout--block-gap-large);
}

.block-latest-book__content p:not(:first-child) {
	margin-top: 10px;
}

.block-latest-book .block-latest-book__eyebrow {
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--min);
	letter-spacing: var(--wp--custom--letter-spacing--loose);
	font-weight: 600;
	margin-bottom: 10px;
	display: flex;
    align-items: center;
	gap: 5px;
}

.block-latest-book__eyebrow::before {
	display: block;
	content: '';
	background: transparent url(../../assets/icons/color/book-red.svg) no-repeat center;
	height: 18px;
	width: 18px;
}

.block-latest-book__eyebrow svg {
	fill: var(--wp--preset--color--primary);
}

.block-latest-book__title,
.block-latest-book__content h2 {
	font-family: var(--wp--custom--typography--heading--font-family);
	letter-spacing: var(--wp--custom--typography--heading--letter-spacing);
	text-transform: var(--wp--custom--typography--heading--text-transform);
	font-weight: 400;
	margin-bottom: 10px;
	font-size: 1.5rem;
	margin-top: 0 !important;
	line-height: var(--wp--custom--line-height--medium);
}

/* Dynamic Icon selector classes: added Aug 2024 */
.block-latest-book.has-icon-book .block-latest-book__eyebrow::before {
	background: transparent url(../../assets/icons/book/book.svg) no-repeat center;
}
.block-latest-book.has-icon-chef .block-latest-book__eyebrow::before {
	background: transparent url(../../assets/icons/book/chef.svg) no-repeat center;
}
.block-latest-book.has-icon-cinnamonspice .block-latest-book__eyebrow::before {
	background: transparent url(../../assets/icons/book/cinnamonspice.svg) no-repeat center;
}
.block-latest-book.has-icon-cookie .block-latest-book__eyebrow::before {
	background: transparent url(../../assets/icons/book/cookie.svg) no-repeat center;
}
.block-latest-book.has-icon-globe .block-latest-book__eyebrow::before {
	background: transparent url(../../assets/icons/book/globe.svg) no-repeat center;
}
.block-latest-book.has-icon-grocerybag .block-latest-book__eyebrow::before {
	background: transparent url(../../assets/icons/book/grocerybag.svg) no-repeat center;
}
.block-latest-book.has-icon-onlineclass .block-latest-book__eyebrow::before {
	background: transparent url(../../assets/icons/book/onlineclass.svg) no-repeat center;
}
.block-latest-book.has-icon-pencil .block-latest-book__eyebrow::before {
	background: transparent url(../../assets/icons/book/pencil.svg) no-repeat center;
}
.block-latest-book.has-icon-pinchofseasoning .block-latest-book__eyebrow::before {
	background: transparent url(../../assets/icons/book/pinchofseasoning.svg) no-repeat center;
}
.block-latest-book.has-icon-saletag .block-latest-book__eyebrow::before {
	background: transparent url(../../assets/icons/book/saletag.svg) no-repeat center;
}
.block-latest-book.has-icon-seasoningbag .block-latest-book__eyebrow::before {
	background: transparent url(../../assets/icons/book/seasoningbag.svg) no-repeat center;
}
.block-latest-book.has-icon-shoppingcart .block-latest-book__eyebrow::before {
	background: transparent url(../../assets/icons/book/shoppingcart.svg) no-repeat center;
}

@media only screen and (max-width: 760px) {


}

@media only screen and (min-width: 761px) {

	/* 898 block width 
	image 339
	content 600 
	margin left 298 */

	.block-latest-book {
		display: grid;
		grid-template-areas: "stack";
		align-items: center;
		min-height: 500px; /* @TODO may need to update this */
	}

	.block-latest-book__image {
		grid-area: stack;
		width: 37.75055679%;
		align-self: stretch;
		height: auto;
	}

	.block-latest-book__content {
		grid-area: stack;
		width: 66.81514477%;
		margin-left: 33.18485523%;
	}


}