.berichten .alm-listing,
.berichten-row{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(293px, 1fr));
    gap: 3rem;
}

.nieuws_1_koloms .nieuwsoverzicht_afbeelding{
	margin-right: 3rem;
	flex-shrink: 0;
}

.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;
}

.bericht{
    border: 0.1rem solid #d9d9d9;
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    text-decoration: none;
    transition: 0.3s border;
}

.bericht:hover{
    border-color: var(--border-hover)
}

.bericht:hover span:after{
    transform: translateX(1rem);
}

.bericht h3{
    transition: 0.3s color;
}

.bericht:hover h3{
    color: var(--rood);
}

.bericht_tekst_wrap{
    padding: 2rem;
}

@media (max-width:767px)
{
	.nieuwsoverzicht_afbeelding{
		margin-right: 0;
	}
    
    .berichten_met_aantal .berichten-row{
        scroll-snap-type: x mandatory;
        overflow-x: scroll;
        display: flex;
        flex-wrap: nowrap;
        --bs-gutter-x: 1.5rem;
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        gap: 1.5rem;
    }
    
    .berichten_met_aantal .berichten-row > a {
		scroll-snap-align: start;
		scroll-margin-left: 2rem;
        width: 30rem;
        flex-basis: 30rem;
        min-width: 30rem;
    }
}

@media (min-width:768px) and (max-width:991px)
{
	.nieuwsoverzicht_afbeelding{
		margin-right: 0;
	}
    
    .berichten_met_aantal .berichten-row{
        scroll-snap-type: x mandatory;
        overflow-x: scroll;
        display: flex;
        flex-wrap: nowrap;
        --bs-gutter-x: 1.5rem;
        margin-left: calc(-1 * (((100vw - (var(--container-width) - 6rem))) / 2));
        margin-right: calc(-1 * (((100vw - (var(--container-width) - 6rem))) / 2));
        padding-left: calc(1 * (((100vw - (var(--container-width) - 6rem))) / 2));
        padding-right: calc(1 * (((100vw - (var(--container-width) - 6rem))) / 2));
    }
    
    .berichten_met_aantal .berichten-row > a {
        width: 50%;
        flex-basis: 50%;
        min-width: 50%;
    }
}