.nieuws_img picture{
	display: flex;
	width: 100%;
	height: 100%;
}

.nieuws_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.berichten_grid{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 3rem;
}

.bericht_inner{
	padding: 3rem 3.5rem;
	background: linear-gradient(180deg, rgba(0, 85, 106, 0.86) 0%, #00556A 68%);
	color: #fff;
}

.nieuws_item{
	text-decoration: none;
	border-radius: 1rem;
	overflow: hidden;
	display: grid;
	grid-template-rows: 13rem 1fr;
}

.nieuws_item .link_met_pijl_na{
	align-items: center;
}

.nieuws_item .link_met_pijl_na:after{
	background: var(--groen);
	border-radius: 0.5rem 0 0 0.5rem;
	padding-left: 1.3rem;
	width: 6.3rem;
    padding-block: 0.3rem;
    margin-right: -3.5rem;
}

.nieuws_item > div{
	grid-column: 1;
    grid-row: 1 / -1;
}

.nieuws_item > div:nth-child(2){
	grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bericht_inner_intro{
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;  
	overflow: hidden;
	margin-bottom: var(--default-margin-bottom);
}

.berichten .tns-horizontal.tns-subpixel > .tns-item,
.berichten .tns-item{
	display: flex;
}

.berichten .tns-slider .col-sm-12{
	padding-left: 0 !important;
}

.berichten .tns-slider.row{
	margin: 0 !important;
}

.berichten .tns-controls,
.berichten .tns-controls button{
	outline: none;
}

.berichten .tns-controls button{
	margin: 0 0.5rem;
	background: none;
	width: 50px;
	height: 50px;
	border: 2px solid rgba(36, 185, 187, 0.15);
	border-radius: 50%;
	padding: 0;
	-webkit-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}

.berichten_counter{
    display: inline-block;
    position: relative;
    top: -1.5rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

.berichten .tns-controls button[disabled]{
	opacity: 0.3;
	cursor: default;
}

.berichten .tns-controls button:not([disabled]):hover{
	border: 2px solid #ccc;
	background-color: #ccc;
	color: #fff;
}

.berichten .tns-controls{
	text-align: center;
}

@media (max-width:767px)
{
	.nieuwsoverzicht_afbeelding{
		margin-right: 0;
	}
}

@media (min-width:768px) and (max-width:991px)
{
	.nieuwsoverzicht_afbeelding{
		margin-right: 0;
	}
}