.related-post-section {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    background: #F2F2F2;
}
.related-post-section .wrap {
    width: 100%;
    max-width: 1440px;
    padding: 80px 120px;
}
.related-post-section .wrap .columns {
    display: flex;
    flex-flow: column nowrap;
    gap: 40px;
}
.related-post-section .wrap .columns .column {
    width: 100%;
}
.related-post-section .wrap .columns .column-header h2 {
    color: #000;
    font-family: Lato;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px; /* 114.286% */
}
.related-post-section .wrap .columns .column-body {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 24px;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    overflow: hidden;
}
.related-post-section .wrap .columns .column-body .column-post {
    display: flex;
    flex-flow: column nowrap;
    border-radius: 12px;
    box-shadow: -5px 10px 25px 0px rgba(111, 111, 111, 0.10);
    background: #fff;
}
.related-post-section .wrap .columns .column-body .column-post .post-image-wrap {
    width: 100%;
    height: 240px;
    display: flex;
    flex-flow: column nowrap;
    padding: 0;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    overflow: hidden;
}
.related-post-section .wrap .columns .column-body .column-post .post-image-wrap a {
    width: 100%;
    height: 100%;
    padding: 0!important;
}
.related-post-section .wrap .columns .column-body .column-post .post-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 0;
}
.related-post-section .wrap .columns .column-body .column-post .post-details {
    padding: 20px;
    display: flex;
    flex-flow: column nowrap;
    gap: 32px;
    background: #FFF;
    /* height: 100%; */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    justify-content: space-between;
}
.related-post-section .wrap .columns .column-body .column-post .post-details h4 {
    color: #000;
    font-family: Lato;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
}
.related-post-section .wrap .columns .column-body .column-post a {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    align-items: center;
    color: #6BBC9F;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-top: auto;
    padding: 0 20px 20px;
}
.related-post-section .wrap .columns .column-body .column-post .post-details h4 a {
    color: inherit;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
    padding: 0!important;
}


@media only screen and (max-width: 1279px) {
    .related-post-section .wrap {
        padding: 60px;
    }
}
@media only screen and (max-width: 767px) {
    .related-post-section .wrap {
        padding: 40px 20px;
    }
    .related-post-section .wrap .columns {
        gap: 24px;
    }
    .related-post-section .wrap .columns .column-header h2 {
        font-size: 34px;
        line-height: 42px;
    }
    .related-post-section .wrap .columns .column-body {
        grid-template-columns: repeat(1, minmax(320px, 1fr));
    }
    .related-post-section .wrap .columns .column-body .column-post .post-details h4 {
        font-size: 20px;
        line-height: 32px;
    }
    .related-post-section .wrap .columns .column-body .column-post .post-image-wrap {
        order: unset;
    }
}