.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns */
    grid-gap: 30px; /* Gap between grid items */
}

.post-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.post-item h3 {
    margin-top: 10px;
}


/* Resonsiveness */
@media (max-width: 767px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns for tablet */
    }
}

/* Media query for mobile devices */
@media (max-width: 480px) {
    .post-grid {
        grid-template-columns: repeat(1, 1fr); /* Single column for mobile */
    }
}





.image-wrapper {
    position: relative;
}

.specialisatie {
    position: absolute;
    left: 10px;
    bottom: 18px;

    background-color: #FFF;
    color: black;
    font-size: 14px;

    padding: 8px 12px;
    border-radius: 100px;

    display: flex;
    align-items: center;
    justify-content: center;
}
