.verhaal_tekst_wrap{
    padding: 3rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 1.6rem;
    line-height: 2.6rem;
    color: #fff;
    height: 80%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.60) 80%);
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.jumbotron h2.verhaal__h2{
    color: #fff !important;
    font-family: museo, serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 3.5rem;
    transition: 0.3s color;
}

.verhaal{
    position: relative;
    transition: 0.3s transform, 0.3s box-shadow;
	display: block;
}

.verhaal:hover{
    box-shadow: 1.5rem 1.5rem 3rem rgb(0 0 0 / 6%);
    transform: translateY(-1rem);
}

.verhaal:hover h2.verhaal__h2{
    color: var(--roze);
}

.verhaal_grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    column-gap: 3rem;
    row-gap: 3rem;
}

.verhaal_grid + .verhaal_grid{
    margin-top: 3rem;
}

.verhaal__link:before{
    content: "";
    position: absolute;
    inset: 0;
}

.verhaal__link,
.verhaal__link:hover,
.verhaal__link:focus{
    color: var(--roze);
    text-decoration: none;
    font-size: 1.6rem;
}

.verhaal__link i{
    font-size: 1.9rem;
}

.only-loader{
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}

.only-loader.loading:before{
    display: inline-block;
    content: "\f110";
    color: var(--donkerblauw);
    font-family: "Font Awesome 6 Pro";
    font-size: 4.3rem;
    font-weight: 400;
    animation: rotation 2s infinite linear;
}

.verhaal_video{
    aspect-ratio: 480 / 710;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.3s opacity;
}

.verhaal_cta{
    aspect-ratio: 480 / 710;
    padding: 3rem;
    background-color: #ffffff;
    display: flex;
    align-items: flex-end;
}

.verhaal_cta > .flex-column > *:last-child{
    margin-bottom: 0;
}

.verhaal:hover .verhaal_video{
    opacity: 1;
}

.verhaal_video video{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.verhaal_cta h2{
    color: var(--donkerblauw) !important;
}

@media (max-width:767px)
{
	.nieuwsoverzicht_afbeelding{
		margin-right: 0;
	}
	
	.jumbotron h2.verhaal__h2{
		font-size: 2rem;
		line-height: 2.6rem;	
	}
}

@media (min-width:768px) and (max-width:991px)
{
	.nieuwsoverzicht_afbeelding{
		margin-right: 0;
	}
	
	.verhaal_grid {
    	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}
	
	.jumbotron h2.verhaal__h2{
		font-size: 2rem;
		line-height: 2.6rem;	
	}
}

@media (min-width:992px) and (max-width:1199px)
{
	.verhaal_grid {
    	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}
	
	.jumbotron h2.verhaal__h2{
		font-size: 2rem;
		line-height: 2.6rem;		
	}
}

@media (min-width:1200px) and (max-width:1399px)
{
    
}

@media (min-width:1400px)
{
    
}