/* 
Flex Post Grid

Algemene CSS instellingen voor de module.
Verwijder deze instellingen niet.
*/

.flex_module.postgrid .flex-content-grid{
    display: grid;
}
.flex_module.postgrid .flex-content-grid > .post .image img{
    max-width: 100%; height: 270px;
    object-fit: cover; object-position: center;
}

.flex_module.postgrid .flex-content-grid > .post .image {
    max-height: 270px;
    height: 100%;
}

.flex_module.postgrid .flex-content-grid .post {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.flex_module.postgrid h4{
    font-size: 26px; font-weight: 700;
    font-family: "Pangea Trial", sans-serif;
    margin-top: 20px;
}

.flex_module.postgrid button.load {
    transition: all 250ms ease-in-out;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    width: 100%;
    max-width: fit-content;
    margin-inline: auto;
    padding: 14px 40px;
}

.flex_module.postgrid button.load:hover{
    color: #fff; background-color: #000 !important; border-color: #000 !important;
}

.flex_module.postgrid .flex-content-grid.loading {
    opacity: 0.3;
}

@media only screen and (min-width: 993px) {
    .flex_module.postgrid .flex-content-grid{
        grid-template-columns: repeat(3, 1fr);
        column-gap: 20px; row-gap: 40px;
    }
}
   
@media only screen and (max-width: 992px){
    .flex_module.postgrid .flex-content-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .flex_module.postgrid{  
        margin-block: 30px;
    }

    .flex_module.postgrid button.load{
        margin-top: 40px;
    }
}
@media only screen and (max-width: 767px){
    .flex_module.postgrid .flex-content-grid{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .flex_module.postgrid h4{
        font-size: 20px;
    }

    .flex_module.postgrid button.load{
        margin-top: 20px;
    }
}