.page-template-template-tegels .content-container .tegels{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.page-template-template-tegels .content-container .tegels img{
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.page-template-template-tegels .content-container .tegels h3{
    margin-bottom: 0;
    margin-top: 20px;
}

@media screen and (max-width: 1000px) {
    .page-template-template-tegels .content-container .tegels{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 650px) {
    .page-template-template-tegels .content-container .tegels{
        grid-template-columns: 1fr;
        gap: 40px;
    }
}