.nieuwsSection{
    /* margin-top:var(--headerHeight); */
    overflow: hidden;
    background-color: var(--themeBg);
}
.nieuwsHeader{
    width:100%;
    height:auto;
    aspect-ratio: 16/8;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.inhoudCol{
    margin-top: -15px !important;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    z-index: 1;
    position: relative;
}

.imagesHolder{
    width: 100%;
    height: max-content;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    flex-direction: column;
    gap: 1.5rem;
}
.imagesHolder .imageBlock{
    width: 100%;
    aspect-ratio: 16/9;
}
.imagesHolder .imageBlock .imageHolder{

}


.section.otherNews{
    position:relative;
    margin-top: calc(100dvw * (128/1440));
}

.section.otherNews::before{
    content:'';
    position:absolute;
    background-image:url(/images/bg-tint-white.svg);
    background-size: 100%;
    background-position: top left;
    background-repeat: no-repeat;
    bottom: 100%;
    left:0;
    right:0;
    aspect-ratio: 1440/128;
}

.nieuwsSection > .container .row:last-of-type{
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

footer .footerTop{
    background-color:#fff;
}