h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    margin: 0px;
    padding-top: 30px;
    padding-bottom: 10px;
}

.nieuws.container {
    display:flex;
    flex-direction:column;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.nieuwsbericht {
    display:flex;
    flex-direction: column;
    border-bottom: var(--border-subtle);
    margin-bottom: 10px;
}

.nieuwsbericht img {
    background-color: var(--placeholder);
    border-radius: var(--round);
    height: 60vw;
    width: 100%;
    object-fit:cover;
    margin:0;
}

@media screen and (min-width: 557px) {
    .nieuws.container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .nieuwsbericht {
        width: 48%;
    }
    .nieuwsbericht img {
        height: 30vw;
    }
}

@media screen and (min-width: 992px) {
    .nieuwsbericht {
        width: 302px;
        box-sizing: border-box;
    }
    .nieuwsbericht img {
        height: 220px;
    }
}


.nieuwsbericht .content {
    padding-top: 15px;
    padding-bottom: 0px;
}

.nieuwsbericht p {
    margin-bottom: 15px;
}

.nieuwsbericht h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    transition-duration: 300ms;
}

.nieuwsbericht:hover h3 {
    color: var(--primary-hover);
}

.nieuwsbericht:hover img {
    box-shadow: var(--schaduw);
}

.nieuwsbericht .subtitle {
    color: var(--subtle);
    font-size: 14px;
}

/* - - - meedoen - - - */

.inhoud a {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
}

.inhoud {
    border-left: var(--text) dashed 3px;
    padding: 0 0 0 10px;
}

.inhoud ul {
    margin: 10px;
}

.aside {
    min-width: 280px;
    width: 400px;
    max-width: 100%;
    height: fit-content;
}

@media screen and (min-width: 992px) {
    .nieuws.boxed {
        position: relative;
    }
    .aside {
        position: sticky;
        top: 20px;
    }
    .nieuws {
        display:flex;
    flex-direction: row-reverse;
    gap: 30px;
    justify-content: space-between;
    }
}

.doejemee p a {
    color: var(--primary);
}
.doejemee p a:hover {
    color: var(--primary-hover);
}

.doejemee ul {
    list-style:initial;
    padding-left: 30px;
}
.nieuws .doejemee h3 {
    font-size: 26px;
}
.main-img img {
    max-width: 100%;
    border-radius: var(--round);
}
.main-img {
  padding: 20px 0;
  margin: 0 0;
  float: none;
}