.news-slider-wrap{
    position:relative;
}

.news-track{
    display:flex;
    gap:40px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
	padding: 25px;
}

.news-track::-webkit-scrollbar{
    display:none;
}

.news-card{
    flex:0 0 calc(33.333% - 27px);
    border:0px solid #0d47a1;
    border-radius:5px;
    overflow:hidden;
		margin-top: 0px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.22);
	transition:.3s;
}
.news-card:hover{
	margin-top: -5px;
}

.news-thumb img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

.news-content{
    padding:30px;
}

.news-content h3{
    font-size:18px;
    line-height:1.3;
    margin:15px 0;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    min-width: 0;
}

.news-content .news-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:15px;
    padding:10px 24px;
    border:1px solid #ccc;
	    background:#fff;
    color: var(--e-global-color-primary);
    font-size:14px;
    font-weight:300;
    text-decoration:none;
    transition:.3s;
}

.news-content .news-btn:hover{
    background: var(--e-global-color-primary);
    color:#fff;
	margin-top: 5px;
}

.news-prev,
.news-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 9;
    padding: 4px 10px;
}

.news-prev svg, .news-next svg {
    fill: var(--e-global-color-primary);
    height: 2em;
    position: relative;
    width: 1em;
}
.news-prev:hover, .news-prev:focus,
.news-next:hover, .news-next:focus{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    z-index:9;
	background-color:var(--e-global-color-primary);
	
}

.news-prev:hover svg, .news-prev:focus svg,
.news-next:hover svg, .news-next:focus svg{
    fill:#fff;
	
}
.news-prev{
    left:-40px;
}

.news-next{
    right:-40px;
}

@media(max-width:1024px){

    .news-card{
        flex:0 0 calc(50% - 20px);
    }

}

@media(max-width:767px){

    .news-card{
        flex:0 0 100%;
    }
.news-content h3 {
    font-size: 23px;
}
	.news-content p{
    font-size: 12px;
}
}