.block-cookbook {
	display: grid;
	grid-template-columns: 344px 1fr;
	grid-template-areas: 'image content';
	align-items: center;
}

.block-cookbook.has-background,
.editor-styles-wrapper .block-cookbook.has-background,
.block-cookbook.has-background.alignfull,
.editor-styles-wrapper .block-cookbook.has-background.alignfull {
	padding: 0;
}

/*
.block-cookbook__image img,
.block-cookbook__image img[style] {
	height: 100% !important;
	aspect-ratio: auto !important;
	object-fit: cover;
}
*/

.block-cookbook__content {
	max-width: var(--wp--custom--layout--content);
	margin-inline: auto;
	padding: var(--wp--custom--layout--block-gap-large);
	grid-area: content;
}

.block-cookbook__image {
	grid-area: image;
}

@media only screen and (max-width: 767px) {
	.block-cookbook {
		display: block;
	}

	.block-cookbook__content {
		padding: 16px;
	}
}

.block-area-sidebar .block-cookbook {
	display: block;
}

.block-area-sidebar .block-cookbook__content {
	padding: 16px;
}
