.wp-block-post-featured-image {
	margin-left: 0;
	margin-right: 0;
}

.wp-block-post-featured-image.aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.wp-block-post-featured-image.alignright {
	margin-left: auto;
}

.wp-block-post-featured-image.alignleft {
	margin-right: auto;
}

.wp-block-post-featured-image a {
	display: block;
}

.wp-block-post-featured-image img {
	max-width: 100%;
	height: auto;
}

.wp-block-post-featured-image.alignwide img, .wp-block-post-featured-image.alignfull img {
	width: 100%;
}.wp-block-post-featured-image{
	line-height:0;
}
.wp-block-post-featured-image img{
	width:100%;
	padding:0 !important;
	max-width:100% !important;
}
/* Imagify Fix */
.wp-block-post-featured-image picture img{
	object-fit:inherit;
	height:inherit;
}.wp-block-post-featured-image.is-style-gradient-top{
	position: relative;
}
.wp-block-post-featured-image.is-style-gradient-top::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 40%; /* Increased to ensure the gradient continues beyond the primary focus area */
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px); /* Adjust blur value to your preference */
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); /* Gradient from 70% black opacity to transparent */
	-webkit-mask-image: linear-gradient(to bottom, var(--wp--preset--color--secondary) 30%, transparent 100%); /* This is used to gradually fade out the blur */
	pointer-events: none;
}