

/* 
 * Blog Single CSS
 * */

.post-featured-img img{
	aspect-ratio: 1 / 0.46;
	object-fit: cover;
}

.post-entry p{
	margin-bottom: 1.5em;
}

.post-entry a,
.post-entry a strong,
.post-entry p strong{
	color: var(--e-global-color-primary);
	transition: all 0.3s ease-in-out;
	font-weight: bolder;
}

.post-entry a:hover{
	text-decoration: underline;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-family: var(--e-global-typography-primary-font-family);
	font-weight: var(--e-global-typography-primary-font-weight);
	line-height: var(--e-global-typography-primary-line-height);
	margin: 0.4em 0 0.6em;
}

.post-entry h1{
	font-size: 40px;
}

.post-entry h2{
	font-size: 36px;
}

.post-entry h3{
	font-size: 30px;
}

.post-entry h4{
	font-size: 26px;
}

.post-entry h5{
	font-size: 22px;
}

.post-entry h6{
	font-size: 20px;
}

.post-entry blockquote{
	position: relative;
	background-color: var(--e-global-color-accent);
	background-image: url("./images/quote-icon.svg");
    background-repeat: no-repeat;
    background-position: top 30px left 30px;
    background-size: 60px auto;
	border-radius: 20px;
    padding: 40px 40px 40px 110px;
	margin-left: 0;
	margin-right: 0;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	color: var(--e-global-color-secondary);
	font-size: 22px;
	text-align: justify;
	font-weight: 600;
	line-height: var(--e-global-typography-text-line-height);
}

.post-entry .wp-container-core-columns-is-layout-1 figure{
	margin: 0 auto;
}

.post-entry .wp-container-core-columns-is-layout-1 figure img{
	aspect-ratio: 1 / 0.52;
	object-fit: cover;
	border-radius: 20px;
}

.post-entry .wp-block-columns h3.wp-block-heading{
	font-family: var(--e-global-typography-primary-font-family);
	font-weight: var(--e-global-typography-primary-font-weight);
	line-height: var(--e-global-typography-primary-line-height);
	margin: 20px 0 0 0;
}

.post-entry ul{
	list-style: none;
}

.post-entry ul,
.post-entry ol{
	padding: 0;
	margin: 20px 0;
}

.post-entry ol{
	padding-left: 20px;
}

.post-entry ul li:not(:last-child),
.post-entry ol li:not(:last-child){
	position: relative;
	margin-bottom: 15px;
}

.post-entry ul li{
	position: relative;
	padding-left: 25px;
	color: var(--e-global-color-primary);
}

.post-entry ul li:before{
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: currentcolor;
    mask-image: url("./images/icon-sub-heading.svg");
    mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: top left;
	width: 15px;
	height: 15px;
}

.post-entry ol li{
	padding-left: 5px;
	color: var(--e-global-color-primary);
}

.post-entry ol li::marker{
	font-size: 18px;
	font-weight: 500;
	color: var(--e-global-color-primary);
}

.post-entry ul li a,
.post-entry ul li a strong,
.post-entry ul li strong,
.post-entry ol li a,
.post-entry ol li a strong,
.post-entry ol li strong{
	color: var(--e-global-color-accent);
	transition: all 0.3s ease-in-out;
}
 	
.post-tag ul li .elementor-post-info__item--type-terms span{
	font-size: 0 !important;
}

.post-tag ul li .elementor-post-info__item--type-terms span a{
	display: inline-block !important;
	font-size: initial !important;
	background: var(--e-global-color-accent);
	border-radius: 10px;
	padding: 10px 30px;
	margin-right: 15px;
	border: 1px solid transparent;
	transition: all 0.4s ease-in-out;
}

.post-tag ul li .elementor-post-info__item--type-terms span a:last-child{
	margin-right: 0;
}	

.post-tag ul li .elementor-post-info__item--type-terms span a:hover{
	background: var(--e-global-color-secondary);
	color: var(--e-global-color-accent) !important;
	border: 1px solid var(--e-global-color-accent);
}

@media only screen and (max-width: 1024px) {

	.post-featured-img img {
		aspect-ratio: 1 / 0.6;
	}	
	
	.post-entry h1{
		font-size: 38px;
	}

	.post-entry h2{
		font-size: 34px;
	}

	.post-entry h3{
		font-size: 28px;
	}

	.post-entry h4{
		font-size: 24px;
	}

	.post-entry h5{
		font-size: 22px;
	}

	.post-entry h6{
		font-size: 20px;
	}
	
	.post-entry blockquote{
		padding: 20px 20px 20px 90px;
        background-position: top 20px left 20px;
        background-size: 50px auto;
	}
	
	.post-entry blockquote p{
		font-size: 18px;	
	}
	
	.post-entry ul ul, 
	.post-entry ol ul,
	.post-entry ol ol,
	.post-entry ul ol{
		margin: 10px 0;
	}
}

@media only screen and (max-width: 767px) {
	
	.post-featured-img img{
		aspect-ratio: 1 / 0.8;
	}

	.post-entry h1{
		font-size: 32px;
	}

	.post-entry h2{
		font-size: 30px;
	}

	.post-entry h3{
		font-size: 26px;
	}

	.post-entry h4{
		font-size: 24px;
	}

	.post-entry h5{
		font-size: 22px;
	}

	.post-entry h6{
		font-size: 20px;
	}

	.post-entry blockquote{
		background-position: top 15px left 20px;
        background-size: 30px;
        text-indent: 40px;
        padding: 20px;
	}
	
	.post-entry blockquote p{
		font-size: 16px;
	}
	
	.post-entry .wp-container-core-columns-is-layout-1{
		flex-wrap: wrap;
	}
	
	.post-entry .wp-container-core-columns-is-layout-1 figure img{
		aspect-ratio: 1 / 0.8;
	}
	
	.post-entry ul li{
		padding-left: 20px;
	}
	
	.post-entry ul ul li,
	.post-entry ol ul li,
	.post-entry ol ol li,
	.post-entry ul ol li{
		font-size: 14px;
	}
	
	.post-entry ul ul li:before,
	.post-entry ol ul li:before{
		width: 12px;
    	height: 12px;
	}
	
	.post-entry ul li:not(:last-child), 
	.post-entry ol li:not(:last-child){
		margin-bottom: 10px;
	}
	
	.post-entry ol li::marker{
		font-size: 16px;
	}
	
	.post-entry ol ol li::marker, 
	.post-entry ul ol li::marker{
		font-size: 14px;
	}
	
	.post-entry ul ul, .post-entry ul ol, .post-entry ol ol, .post-entry ol ul{
		margin: 10px 0;
	}
	
	.post-tag ul li .elementor-post-info__item--type-terms span a{
		padding: 10px 15px;
	}
	
	.post-single-category ul li:not(:last-child){
		margin-bottom: 15px;
	}
	
	.post-single-category ul li a{
		padding: 15px 15px 15px 40px;
	}
	
	.post-single-category ul li a:before{
    	font-size: 14px;
	}
	
	.recent-post.elementor-posts--thumbnail-left .elementor-post{
		flex-direction: column;
	}
}