@media(min-width:600px){
	.wp-embed {
		display:flex;
	}
	.wp-embed-featured-image {
		width: 40%;
	}
	.wp-embed-heading {
		width: 60%;
	}
}
body{
	border: 2px solid #757575;
    border-radius: 12px;
	overflow: hidden;
}
.wp-embed {
	align-items: center;
	transition: all 0.3s;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
}
.wp-embed:hover {
	opacity: 0.8;
	background: #E3F2FD;
}
.wp-embed-featured-image {
	text-align: center;
	max-width: 100%;
}
.wp-embed-featured-image img {
    max-width: 100%;
    height: auto;
	object-fit: cover;
	vertical-align: middle;
	border-radius: 11px 11px 0 0;
}
.wp-embed-heading {
	color: #1E88E5;
    font-weight: bold;
    font-size: 1.2rem;
	padding: 0.4rem 1rem;
}
.wp-embed-heading span {
	font-size: 0.8rem;
	text-decoration: none;
}
