
.uitgaves, .artikels-container, .podcasts-container{
    padding-top: 50px;
    padding-bottom: 30px;
}

.artikels, .podcasts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.unité-image {
    width: 100%;
    height: 300px;
    max-height: 400px;
    object-fit: contain;
    object-position: left bottom;
}


.podcast, .artikel {
    transition: background-color ease-in-out 0.3s;
    width: auto;

    padding: 10px;
    box-sizing: auto;
    border-radius: 10px;
}

.podcast:hover{
    background-color: rgb(245, 245, 245);
}

@media (max-width: 768px) {
    .unité-image {
        object-position: center bottom;
    }
}