.nieuws .container {
    overflow: hidden;
}

.nieuws .filter {
    text-align: center;
    background-color: #cbc4bc;
    padding: 10px 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    display: block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.nieuws .filter::after {
    transition: ease all 0.2s;
    height: 15px;
    width: 15px;
    background-size: contain;
    background-image: url("img/driehoek-open.png");
    background-repeat: no-repeat;
    content: "";
    display: block;
    position: absolute;
    left: 15px;
    top: 16px;
    transform: rotate(90deg);
    opacity: 0;
}

.nieuws .filter.actief::after {
   opacity: 0.8;
}

.nieuws .bericht {
    text-decoration: none;
}

.nieuws .bericht:hover .bg-blauw {
    background-color: #0a2535;
}

.nieuws .bericht:hover img {
    transform: scale(1.03);
}

.nieuws .bericht .bg-blauw {
    transition: ease all 0.3s;
}

.nieuws .afbeelding-wrap {
    position: relative;
    overflow: hidden;
}

.nieuws .aligner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nieuws .aligner-item {
    width: 100%;
}

.nieuws .status {
    position: absolute;
    width: 70%;
    line-height: 20px;
    text-align: center;
    padding-top: calc(70% - 25px);
    padding-bottom: 5px;
    left: 0;
    top: calc(-0.2916 * 70%);
    transform: rotate(-45deg);
    transform-origin: left bottom;
    background-color: rgba(66,85,99,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 998;
}

.nieuws img {
    width: 100%;
    transition: ease all 0.3s;
}

.nieuws .bericht h2 {
    color: #fff;
}

.nieuws .berichttype-wrap {
    position: relative;
}

.nieuws .berichttype {
    position: absolute;
    height: 100%;
    width: 100%;
}

.nieuws .icoon {
    background-size: 50%;
    background-origin: content-box;
    background-position: top center;
    background-repeat: no-repeat;
}

.nieuws .icoon span {
    display: block;
    margin-top: 50%;
    text-align: center;
    padding-top: 15px;
}

.nieuws .berichttype {
    background-size: 90%;
    background-origin: content-box;
    background-position: center center;
    background-repeat: no-repeat;
}

.nieuws .bericht {
    position: relative;
}

.nieuws .bericht.niet-beschikbaar {
    opacity: 0.6;
}


.nieuws .bericht-compact .afbeelding-wrap img {
    margin-top: -20%;
    margin-bottom: 20%;
}

.nieuws .bericht-compact .bg-blauw {
    position: absolute;
    bottom: 0;
    width: calc(100% - var(--bs-gutter-x));
}

.nieuws .bericht-compact .icoon {
    background-size: 20%;
    background-origin: content-box;
    background-position: top center;
    background-repeat: no-repeat;
}

.nieuws .bericht-compact span {
    display: block;
    margin-top: 20%;
    text-align: center;
    padding-top: 15px;
}