.page-template-template-smoelenboek .teamwrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.page-template-template-smoelenboek .teamwrapper .teamlid{
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    background: white;
    box-shadow: 1px 1px 6px 2px #bdbdbd1a;
    transition: 0.2s ease-in-out all;
}

.page-template-template-smoelenboek .teamwrapper .teamlid:hover{
    transform: translateY(-20px);
}

.page-template-template-smoelenboek .teamwrapper .foto img{
    border-radius: 100%;
}

.page-template-template-smoelenboek .teamwrapper .foto{
    margin-bottom: 20px;
}

.page-template-template-smoelenboek .teamwrapper .naam{
    font-weight: bold;
}

@media only screen and (max-width: 1000px) {
    .page-template-template-smoelenboek .teamwrapper{
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media only screen and (max-width: 640px) {
    .page-template-template-smoelenboek .teamwrapper{
        grid-template-columns: 1fr;
    }
}