.ww-latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px;
}

.ww-post-item {
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-left: auto;
  margin-right: auto;

}


.ww-post-image {
    width: 100%;
    /*height: 300px;*/
    object-fit: cover;
}


.ww-post-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}



/* Responsive adjustments */
@media (max-width: 1200px) {
    .ww-latest-posts-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .ww-post-image{
        /*height: 250px;*/
    }
}

@media (max-width: 992px) {
    .ww-latest-posts-grid {
        grid-template-columns: 1fr;
    }
    .ww-post-image{
        /*height: 200px;*/
    }
}