p.blog_date {
	color: #717171;
	font-family: Lato;
	font-size: 16px;
	font-weight: 400;
}

p.blog_title.pb_20 {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
}
.news_item:hover, .blog_item:hover{
	background-color: #FBDA79;
	transition: 0.8s;
}

a.blog_read {
	font-family: Lato;
	font-size: 18px;
	font-weight: 700;
	color: #623F99;
	position: relative;
	overflow: hidden;
	width: fit-content;
	display: inline-block;
	padding-bottom: 3px;
	margin-top:18px;
}
a.blog_read::after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--e-global-color-primary);
	transition: all 0.5s ease;
}
a.blog_read::before {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--e-global-color-primary);
	transform: translatex(-120%);
	transition: all 0.5s ease;
}
a.blog_read:hover::after{
	transform: translatex(120%);
}
a.blog_read:hover::before{
	transform: translatex(00%);
}
.blog_wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px 32px;
}
.blog_item {
	border: 1px solid #d3d2d2;
	padding: 30px;
	border-radius: 15px;
	position:relative;
}
.blog_item > .blog-image {
	border-radius: 15px;
	width: 100%;
	height: 150px;
	object-fit: cover;
}
.blog_item > div::after{
	content: url(/wp-content/uploads/2025/01/share-icon-hover.svg);
	position: absolute;
	right: 45px;
	top: 42px;
	opacity: 0;
	transition: all 0.3s ease;
}
.blog_item > div:hover::after{
	opacity: 1;
}
.blog_item > div:hover .blogs.ShareButton{
	opacity: 0;
}
.news_item .news_img {
	border-radius: 15px;
}
#load-more-container{
	text-align: center;
}
img.blogs.ShareButton {
	position: absolute;
	right: 45px;
	top: 42px;
	width: 30px;
	opacity: 1;
	transition: all 0.3s ease;
}
#load-more-container .elementor-widget-button{
	text-align: center;
	margin-top: 40px;
}
.ShareButton {
	cursor: pointer;
}

.SharePopup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	/*   display: flex; */
	background-color: #00000080;
}
.SharePopup.show {
	animation: 0.5s appear forwards;
	display: flex;
	z-index: 1;
}
.CloseSharePopup {
	height: 12px !important;
}
@keyframes appear {
	0% {
		opacity: 0;
		display: none;
	}
	100% {
		opacity: 1;
		display: flex;
	}
}
.SharePopup .Popupbox {
	position: relative;
	background-color: #fff;
	max-width: 400px;
	width: fit-content;
	margin: auto;
	padding: 30px 20px 20px 20px;
	border-radius: 15px;
}
.SharePopup .ShareTitle {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 18px;
}
.SharePopup .icons {
	display: flex;
	align-items: center;
	gap: 16px;
}
.SharePopup .icons a {
	background-color: #623F99;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}
.SharePopup .icons a:hover {
	transform: scale(1.1);
}
.SharePopup .icons img {
	filter: contrast(0) brightness(2);
}
.CloseSharePopup {
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 10px;
}
.blog_title.pb_20 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.5; 
	max-height: 3em; 
}

@media (max-width: 1024px) {
	.blog_wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	img.blogs.ShareButton {
		right: 30px;
		top: 30px;
	}
	.blog_wrap {
		grid-template-columns: 1fr; 
		gap: 40px;
	}
	.blog_item {
		padding: 15px;
	}
}


/* newss */
.news_date {
	color: #717171;
	font-family: Lato;
	font-size: 16px;
	font-weight: 400;
}
.news_item > img {
	width: 100%;
}
.news_title.pb_20 {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
}
a.news_read {
	font-family: Lato;
	font-size: 18px;
	font-weight: 700;
	color: #623F99;
	position: relative;
	overflow: hidden;
	width: fit-content;
	display: inline-block;
	padding-bottom: 3px;
	margin-top: 18px;
}
a.news_read::after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--e-global-color-primary);
	transition: all 0.5s ease;
}
a.news_read::before {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--e-global-color-primary);
	transform: translatex(-120%);
	transition: all 0.5s ease;
}
a.news_read:hover::after {
	transform: translatex(120%);
}
a.news_read:hover::before {
	transform: translatex(0%);
}
.news_wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px 32px;
}
.news_item {
	border: 1px solid #d3d2d2;
	padding: 30px;
	border-radius: 15px;
	position: relative;
}
.news_item > div::after {
	content: url(/wp-content/uploads/2025/01/share-icon-hover.svg);
	position: absolute;
	right: 45px;
	top: 42px;
	opacity: 0;
	transition: all 0.3s ease;
}
.news_item > div:hover::after {
	opacity: 1;
}
.news_item > div:hover .news.ShareButton {
	opacity: 0;
}
/* .news_item img {
width: 100%;
} */
#news-load-more-container {
	text-align: center;
}
img.news.ShareButton {
	position: absolute;
	width: 30px;
	right: 45px;
	top: 42px;
	opacity: 1;
	transition: all 0.3s ease;
}
#news-load-more-container .elementor-widget-button {
	text-align: center;
	margin-top: 40px;
}
.ShareButton {
	cursor: pointer;
}
.SharePopup.active{
	display: flex;
}

.NewsSharePopup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #00000080;
}
.NewsSharePopup.show {
	animation: 0.5s appear forwards;
	display: flex;
	z-index: 1;
}
.CloseNewsSharePopup {
	height: 12px !important;
}
.NewsSharePopup .Popupbox {
	position: relative;
	background-color: #fff;
	max-width: 400px;
	width: fit-content;
	margin: auto;
	padding: 30px 20px 20px 20px;
	border-radius: 15px;
}
.NewsSharePopup .ShareTitle {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 18px;
}
.NewsSharePopup .icons {
	display: flex;
	align-items: center;
	gap: 16px;
}
.NewsSharePopup .icons a {
	background-color: #c10c07;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}
.NewsSharePopup .icons a:hover {
	transform: scale(1.1);
}
.NewsSharePopup .icons img {
	filter: contrast(0) brightness(2);
}
.CloseNewsSharePopup {
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 10px;
}
.news_title.pb_20 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.5; 
	max-height: 3em; 
}
@media (max-width: 1024px) {
	.news_wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	.news_wrap {
		grid-template-columns: 1fr; 
		gap:40px ;
	}
}
.pagination a {
    background-color: var( --e-global-color-secondary );!;
    color: #000;
    border-radius: 50%;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
}
.pagination a.prev, .pagination a.next {
    width: auto;
    background-color: transparent;
}
.pagination a.active {
    background-color: var( --e-global-color-primary );
	color: #fff;
}

