.news__cards {
  height: 100%;
  margin: 0;
  padding: 0;
}
.news__cards
/*.news__cards > .row */{
  margin-top: -3rem;
  margin-bottom: 6rem;
}

.news__cards + .news-footer {
    margin-top: 30px;
}





.news__item-imgbox {
	padding-top: 70%;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #f3f4f4;
	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .015);
	background-color: #becdd2;
}

@media (max-width: 992px) {
	.news__item-imgbox{
        padding-top: 55%;
	}
}
@media (min-width: 768px) {
  .news__item-imgbox {
    border-radius: 0 0 50px 0;
  }
}
.news__item-imgbox img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0%;
	bottom: 0%;
	left: 0%;
	right: 0%;
	vertical-align: middle;
	max-width: 100%;
	display: inline-block;
	border: 0;
	transition: transform .7s cubic-bezier(.19, 1, .22, 1);
}


.news__item .cardbox-meta,
.news__item .cardbox-meta > * {
    padding: 0;
    margin: 0;
    font-weight: 400;
    display: inline-block;
    position: relative;
    font-size: 15px;
	color: var(--ltn__heading-color) !important;

}

.news__item .cardbox-meta-btn {
  border-top: 1px solid;
  border-color: #e5eaee;
  padding-top: 20px; 
  

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;   
  
}

.news__item .cardbox-btn {
  font-size: 15px;
  font-weight: 400;
  color: #19355b;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;

	display: inline-block;
	background-position: 0% 100%,100% 100%;
	background-repeat: no-repeat;
	background-size: 0% 1px,100% 1px;
	background-image: linear-gradient(to right, currentcolor 0, currentcolor 100%),linear-gradient(to right, #9f9f9f 0, #9f9f9f 100%);
	text-decoration: none;
	transition: all .3s ease-in-out;
	width: fit-content;
  
}  

.news__item:is(:focus-within,
:focus,
:hover,
:active) .cardbox-btn,
.news__item .cardbox-btn:is(:focus-within,
:focus,
:hover,
:active) {
  background-size:100% 1px,100% 1px;
  color:var(--ltn__secondary-color)
}

.news__item-title {
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: 500 !important;
	line-height: 1.4;
	/* margin-bottom: 20px; */
	color: #071c1f !important;
}
@media(max-width: 991px){
.news__item-title {
    line-height: 1.38;	
}	
}




.news__item-brief {
	padding: 0;
	margin: 0;
  padding: 30px 30px 30px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  position: relative; 
  
  
	display: flex;
	flex-direction: column;
	justify-content: space-between;  
	row-gap: 20px;
	flex: 1;	
	
	margin-bottom: 4px;
	width: 100%;
}

@media (max-width: 767.5px) {
	.news__item-brief{
		padding: 25px 15px;
	}
}

.news__item {
	--box-shadow-default: 0 2px 20px 0 hsla(84, 3%, 71%, .25);
	--box-shadow: 0 2px 20px 0 hsla(84, 3%, 71%, .25);
	--box-shadow-hover: 0px 7px 25px 1px rgba(11, 44, 61,0.2);
	
	
	
	position: relative;
	overflow: hidden;	

	display: flex;
	flex-direction: column;

	background: #fff;	
	background-clip: border-box;

	min-width: 1px;
	height: 100%;	

	border-radius: 0; /* var(--border-radius, .2rem);*/
	border: 0px solid #F2F2F2;
	/*box-shadow: 0px 0px 4px 0px #00000026;*/
	box-shadow: var(--box-shadow, --box-shadow-default);

	font-family: var(--content-font-family);
    color: #28282d;
	transition: .5s;
}


.news__item::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 0%;
	height: 4px;
	/*background-color: #0071bb;*/
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	opacity: 0;
	visibility: hidden;
	
	background-image: linear-gradient(90deg,#004abb .01%,#0051bb 16.01%,#0065bb 40.01%,#0071bb 51.01%,#0777c1 60.01%,#238fdb 100.01%);
}
.news__item:hover::before {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.news__wrapper .news-footer {
    display: flex;
    justify-content: flex-end;
    margin: 10px 10px 0 0;
    position: relative;
}
