.main-post-grid {
    margin-top: 30px !important;
    background: antiquewhite;
    padding: 0 20px;
    overflow: hidden !important;
    position: relative;
}
.post-img-col a img{
    clip-path: polygon(7% 0, 0 100%, 100% 100%, 100% 100%, 100% 0);

}

.post-img-col a img {
    position: absolute;
    display: flex;
    right: 0;
    /* max-height: 266px; */
    width: auto;
    text-align: right;
    clip-path: polygon(7% 0, 0 100%, 100% 100%, 100% 100%, 100% 0);
    align-content: flex-end;
    justify-content: flex-end;
    align-items: flex-end;
}

.post-two-columns {
    display: flex;
    /* flex-wrap: wrap; */
}
.post-col {
    flex-basis: 50%;
    width: 50%;
}

.post-container {
    max-width: 1200px;
    margin: 0 auto;
}

.post-col:first-child {
    padding: 48px 0;
}
.post-title h2 {
    font-size: 34px;
    font-weight: 600;
    color: rgb(50 55 56);
    margin-bottom: 0;
}
.post-exerpt p {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    color: rgb(50 55 56);
}
.post-date h5 {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgb(204 133 39);
}

@media only screen and (min-width: 1024px) {
    .main-post-grid {
    margin-top: 30px !important;
    background: antiquewhite;
    padding: 0 20px;
    overflow: hidden !important;
    position: relative !important;
}
.post-img-col a img {
    height: 100% !important;
    width: 40% !important;
    object-fit: cover;
    max-height: 100% !important;
    position: absolute !important;
    right: 0 !important;
}
}



@media only screen and (max-width: 1024px) {

    .post-two-columns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 20px;
    overflow: visible; /* Allow image to go outside */
}

.post-col {
    flex-basis: 100%;
    width: 100% !important;
}

.post-img-col a img {
    /* max-height: 266px; */
    position: static !important;
    width: 100% !important;
    clip-path: none;
}
.post-img-col {
    position: static;
    width: 100% !important;
    right: 0;
    top: 0;
}
.post-col:first-child {
    padding: 48px 20px;
    padding-bottom: 0px !important;
    z-index: 2;
}
}