/*voordelen-highlights-section*/
.voordelen-highlights-section {
    padding: 80px 35px 0;
    display: flex;
    justify-content: center;
}

.voordelen-highlights-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(412px, 1fr));
    row-gap: 60px;
    column-gap: 30px;
    justify-content: center;
    max-width: 1400px;
    width: 100%;
}

@media (max-width: 1669px) {
    .voordelen-highlights-container {
        justify-items: center;
    }
}

.voordelen-item {
    background-color: #4D6D48;
    width: 100%;
    border-radius: 20px;
    padding: 34px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #fff;
}

.voordelen-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.voordelen-icon {
    width: 48px;
    height: 48px;
}

.voordelen-titel {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 27px;
    margin: 0;
    line-height: 1;
}

.voordelen-tekst {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.5;
}

/* --- Klikbaar blok --- */
.voordelen-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.voordelen-item-link:hover .voordelen-item {
    background-color: #4d6d48f1;
}



/*Contact pagina*/
.page-id-24 .voordelen-highlights-section {
    padding: 0px 35px 0;
}

.page-id-24 .voordelen-highlights-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* behoudt vaste blokgrootte */
    column-gap: 60px;
    row-gap: 50px;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

/* vaste blokgrootte behouden */
.page-id-24 .voordelen-item {
    height: 240px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-id-24 .voordelen-item-link {
    width: 100%;
}

.page-id-24 .voordelen-item-link:hover .voordelen-item {
    text-decoration: underline #fff;
}

.page-id-24 .voordelen-header {
    justify-content: center;
}

.page-id-24 .voordelen-icon {
    margin-bottom: 15px;
    height: 56px;
    width: 56px;
}

.page-id-24 .voordelen-titel,
.page-id-24 .voordelen-tekst {
    text-align: center;
}

/* pas bij echt smalle schermen onder elkaar */
@media (max-width: 700px) {
    .page-id-24 .voordelen-highlights-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}


@media (max-width: 499px) {
    .voordelen-highlights-container {
        grid-template-columns: 1fr;
    }

    .voordelen-tekst {
        line-height: 1.3;
    }

    .voordelen-item {
        height: auto;
        min-height: 190px;
        padding: 24px;
    }
}



@media (max-width: 499px) {
    .voordelen-tekst {
     line-height: 1.3;
    }
}