/* WordPress Embed Preview Styling */
.wp-embed {
	padding: 20px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #fff;
	margin: 20px 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	transition: box-shadow 0.3s ease;
}

.wp-embed:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.wp-embed-featured-image {
	margin-bottom: 15px;
	border-radius: 6px;
	overflow: hidden;
}

.wp-embed-featured-image img {
	width: 100%;
	height: auto;
	display: block;
}

.wp-embed-heading {
	margin: 0 0 10px;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.4;
}

.wp-embed-heading a {
	color: #8e209b;
	text-decoration: none;
	transition: color 0.2s ease;
}

.wp-embed-heading a:hover {
	color: #6d1979;
	text-decoration: underline;
}

.wp-embed-excerpt {
	margin: 0 0 15px;
	color: #666;
	font-size: 0.95rem;
	line-height: 1.6;
}

.wp-embed-footer {
	padding-top: 10px;
	border-top: 1px solid #eee;
	font-size: 0.85rem;
	color: #999;
}

/* Responsive iframe styling */
.wp-embedded-content {
	max-width: 100%;
	margin: 20px 0;
}

iframe.wp-embedded-content {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}
