.news-post {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
}
.news-post-img {
	position: relative;
	display: flex;
	flex: 0 100%;
    max-width: 100%;
    /*mask-image: url(../images/news-card-BG.svg);
    -webkit-mask-image: url(../images/news-card-BG.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: contain;
    -webkit-mask-size: contain;*/
    background-color: #fff;
    margin: 0 0 24px;
    overflow: hidden;
}
.news-post-img img {
	width: 100%;
	transform: scale(1);
	transition: transform 0.5s ease;
}
.news-post:hover .news-post-img img {
	transform: scale(1.1);
}
.news-post-img .read-more {
	position: absolute;
	right: 16px;
	bottom: 16px;
	width: 40px;
	height: 40px;
	border: none;
}
.news-post-img .read-more img {
	transform: none !important;
}
.news-post:hover .read-more {
	background-color: var(--sk-secondary);
}
.news-post:hover .read-more:before {
	transform: translateX(0);
}
.news-post:hover .read-more .normal-icon {
	opacity: 0;
	visibility: hidden;
}
.news-post:hover .read-more .hover-icon {
	opacity: 1;
	visibility: visible;
}
.news-post-info .maxtitle-4 {
	margin-bottom: 10px;
}
.news-post-info .maxtitle-4 a {
	text-decoration: none;
	color: var(--sk-black);
}
.case-row .news-post-info *:last-child {
	margin-bottom: 0;
}
.case-row .news-post-info p {
	font-size: 16px;
}
.news-post-info h3 {
	font-size: 20px;
	line-height: 1.3;
	margin: 0 0 15px;

}
.news-post-info h3 a {
	text-decoration: none;
	color: var(--sk-black);
}
.news-post:hover .news-post-info a {
	color: var(--sk-secondary);
}
.news-date {
	position: relative;
	display: block;
	color: #444444;
	font-size: 14px;
	line-height: 1.2;
}

@media (max-width: 767px) {
	.news-post-img {
	    margin: 0 0 18px;
	}
	.news-post-info h3 {
	    font-size: 20px;
	}
	.gy-50 {
		--bs-gutter-y: 50px;
	}
	.post-result {
	    font-size: 16px;
	}
}