.wp-embed a:hover {
	/* color: #ababab;
	text-decoration: underline; */
}

.wp-embed,
.wp-embed * {
	box-sizing: border-box;
}
.wp-embed {
	padding: 0;
	/* background: #f5f5f5;
	max-width: 550px; */
	background-color: #EBF6FD;
	width: 100%;
	display: flex;
	gap: 24px;
	overflow: hidden;
	border-radius: 12px;
	border: none;
}

.wp-embed-featured-image.square {
	object-fit: cover;
	width: 200px;
	max-width: none;
	float: none;
	/* height: 80px; */

	margin: 0;
}
.wp-embed-featured-image.square a {
	width: 100%;
	height: 100%;
}
.wp-embed-featured-image.square img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	/* height: 80px; */
}

.wp-embed_txtarea {
	width: calc(100% - 200px - 24px);
	padding: 20px;
	padding-left: 0;
}
.wp-embed_txtarea .wp-embed-heading {
	display: block;
	font-size: 16px;
	margin-bottom: 12px;
}
.wp-embed_txtarea .wp-embed-excerpt {
	display: block;
}

@media screen and (max-width: 768px) {
	.wp-embed {
		gap: 2.4vw;
	}
	.wp-embed-featured-image.square {
		width: 35%;
	}
	.wp-embed_txtarea {
		width: calc(100% - 35% - 2.4vw);
		padding: 2.4vw;
	}
	.wp-embed_txtarea .wp-embed-heading {
		font-size: 3vw;
		margin-bottom: 2.4vw;
	}
	.wp-embed_txtarea .wp-embed-excerpt {
		font-size: 2.4vw;
	}
}