.wrap_latest_news {
    margin-bottom: 1.5rem;
}
.latest-item {
    position:relative;
    display:block;
    color: var(--dark-gray);
    border-radius: 0.5rem;
    padding-bottom: 1.25rem;
    overflow: hidden;
    height: 100%;
/*
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.05), 0px 4px 6px -1px rgba(0, 0, 0, 0.10);
*/	
}
.latest-item-img {
    width: 100%;
	display:flex;
    border-radius: .25rem;
	overflow: hidden;
	position:relative;
    flex-direction: column;
}
.latest-item-img:after {
	content:'';
    position: relative!important;
    height: 0!important;
    display: block;
    width: 0;
	padding-top:62.5%
}
.latest-item-img img {
	position: absolute;
    left:0; height:0;
    height: 100% !important;
    object-fit: cover;
    -moz-object-fit: cover;
    -webkit-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    width: 100% !important;
    transition: transform .5s;
}
.latest-item-content {
    padding: 1.25rem 0 0
}
.latest-item .project-item-cat-value {
    color: var(--blue-dark);
    background-color:var(--blue-bgr)
}
.latest-item .project-item-cat-value .project-item-cat-icon {
	background-color: var(--blue-dark);
}
.news-item-info {
	height: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}
.latest-item-title {
    color: var(--new_title);
    font-weight: 500;
    line-height: 1.4;
    font-size: 1.5rem;
    margin: 1rem 0 .5rem;
}
.latest-item .ws-button  {
    padding-top: 0.5rem!important;
    padding-bottom: 0.5rem!important;
    position: absolute;
    right: 0;
    bottom: 0.75rem;
}
.latest-item:hover img {
    transform: scale3d(1.05, 1.05, 1.05);
}
.latest-item:hover .button.right-iconposition {
    padding-right: 1.25rem
}
.latest-item:hover .button.right-iconposition i {
    padding-left: 1rem !important;
}
@media (min-width:1200px) {
	.latest-item-title {
		font-size: 1.375rem;
	}
}
@media (max-width:767px) {
    .wrap_latest_news {
		margin-top: 2rem;
        /* margin-bottom: 1rem; */
    }
    .wrap_latest_news.row > * {
        /* margin-bottom: 1.5rem; */
    }
    .latest-item-img:after {
        padding-top: 58%;
    }
}
