/* Fix Blog Card Layout Issue */
.post-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post__img {
    flex-shrink: 0;
    /* Prevent image from shrinking or being overlapped */
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.post__body {
    flex-grow: 1;
    padding: 30px;
    background: #fff;
    position: relative;
    z-index: 2;
    /* Ensure text sits on top of any background, but below nothing */
    margin-top: 0;
    /* Reset any negative margins causing overlap */
    display: flex;
    flex-direction: column;
}

.post__title {
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Ensure no negative margins on the grid cols */
.blog-grid .col-lg-4 {
    margin-bottom: 30px;
}

/* Check for any absolute positioning that might be causing overlap */
.post-item .post__date {
    z-index: 10;
    /* Ensure date stays on top of image */
}