body {
    overflow-x: scroll;
}

.nieuws {
    
    flex-direction: column;
        gap: 32px;
}

@media screen and (min-width: 992px) {
    .nieuws {
        display:flex;
    flex-direction: row;
    justify-content: space-between;
    }
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    margin: 0px;
    padding-top: 30px;
    padding-bottom: 10px;
}

.nieuws-bericht>h2 {
    font-size: 18px;
    font-weight: 600;
    padding: 0;
}


/* - - - ASIDE - - - */

.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;
        margin-right: -20px;
        min-width:324px;
    }
}

.aside>div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

a.nieuws-bericht {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.aside .nieuws-bericht img {
    width: 110px;
    height: 80px;
    flex-shrink:0;
    object-fit: cover;
    border-radius: var(--medium);
}

.aside h3 {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    padding: 0;
    transition-duration: 300ms;
}

.aside h2 {
    margin-top: 0px;
    line-height: 0px;

}

.aside .subtitle {
    color: var(--subtle);
    font-size: 12px;
    line-height: 18px;
}

.aside .nieuws-bericht:hover h3 {
    color: var(--primary-hover);
}

.aside .main-button {
    margin-top: 18px;
    width: fit-content;
}

/* - - - ARTIKEL - - - */

.nieuwspbericht p {
    margin: 10px 10px 30px 0;
}

.nieuws-bericht p a {
    text-decoration: underline;
    color: var(--primary);
}

.nieuws-bericht p ul {
    font-size: inherit;
}

.nieuws-bericht:first-child .subtitle {
    padding-bottom: 25px;
    display:block;
    font-size: 14px;
}

.nieuws-bericht>p:first-of-type {
    font-weight: 600;
}

.quote {
    margin: 20px -20px 20px -20px;
    background-color: var(--placeholder);
    padding: 20px 20px 30px 20px;
}

@media screen and (min-width: 992px) {
    .quote {
        margin: 20px 0 20px 0;
    }
}

.quote>.text {
    font-size: 18px;
    font-style: italic;
    padding-top: 25px;
    padding-bottom: 25px;
}
.quote::before {
    content: ",,";
    font-size: 60px;
    line-height: 0px;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

/* - - - AFBEELDINGEN - - - */

.main-img:first-child {
    width: 100%;
    margin: 0;
}



.main-img:first-child>img {
    height: 60vw;
    width: 100vw;
    margin: 20px -20px 0 -20px;
object-fit: cover;
}

@media screen and (min-width: 557px) {
    .main-img:first-child>img {
        border-radius: var(--round);
        width: 100%;
    max-width: 700px;
    margin: 8px 0 0 0;
    }
}

@media screen and (min-width: 740px) {
    .main-img:first-child>img {
        height: 440px;
    }
}

.main-img:not(:first-child) {
    padding:20px 0px;
    margin: 0px 0px;
    float:none;
}

@media screen and (min-width: 557px) {
.main-img:not(:first-child) {
    max-width: 50%;
    margin:30px 0 20px 20px;
    float:right;
}
}
.main-img:not(:first-child)>img {
    max-width: 100%;
    border-radius: var(--round)
}


.main-img:not(:first-child) figcaption {
    color: var(--subtle);
    font-size: 14px;
    text-align: end;
}

.main-img:first-child figcaption {
    color: var(--subtle);
    font-size: 14px;
}

