.related-post-section {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    overflow: hidden;
}

.related-post-section .wrap .columns .column.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 {}

.related-post-section .wrap .columns .column-header {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: space-between;
    gap: 20px;
}

.related-post-section .wrap .columns .column-header h2 {
    color: #000;
    font-family: Lato;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 48px;
    /* 114.286% */
}

.related-post-section .wrap .columns .column-header .slick-arrow-buttons {
    position: relative;
    margin-left: auto;
    display: flex;
    flex-flow: row nowrap;
    gap: 12px;
    align-items: center;
}

.related-post-section .wrap .columns .column-header .slick-arrow-buttons .g-slick-arrow-button {
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    transform: unset;
    width: 48px;
    height: 48px;
}

.related-post-section .wrap .columns .column-header .slick-arrow-buttons .g-slick-arrow-button svg rect {
    fill: #9B6C28;
}

.related-post-section .wrap .columns .column-header .slick-arrow-buttons .g-slick-arrow-button:before {
    display: none;
}

.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;
}

.related-post-section .wrap .columns .column-body.slick-initialized {
    display: block;
    padding-bottom: 20px;
    margin-left: -12px;
    margin-right: -12px;
}

.related-post-section .wrap .columns .column-body.slick-initialized .slick-list {
    padding-bottom: 25px !important;
}

.related-post-section .wrap .columns .column-body .column-post {
    display: flex;
    flex-flow: column nowrap;
    border-radius: 12px;
    box-shadow: 0px 4px 4px 0px rgba(111, 111, 111, 0.10);
    background: #f4f4f4;
}

.related-post-section .wrap .columns .column-body.slick-initialized .column-post {
    margin-left: 12px;
    margin-right: 12px;
}

.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: 12px;
    background: #F4f4f4;
    /* 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 .post-category {
    background: #B7864C;
    font-weight: 700;
    color: #fff;
    padding: 2px 10px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    text-transform: uppercase;
}

.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% */
    margin: 0;
}

.related-post-section .wrap .columns .column-body .column-post a {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    align-items: center;
    color: #073950;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
    margin-top: auto;
    padding: 0 20px 20px;
}

.related-post-section .wrap .columns .column-body .column-post a .icon svg path {
    fill: #073950;
}

.related-post-section .wrap .columns .column-body .column-post .post-details h4 a {
    color: inherit;
    padding: 0 !important;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    text-decoration: none;
    text-transform: none;
}

.related-post-section .wrap .columns .column-body .column-post .post-details h4 a:hover {
    text-decoration: underline;
}


@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 0px;
    }

    .related-post-section .wrap .columns {
        gap: 24px;
    }

    .related-post-section .wrap .columns .column-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .related-post-section .wrap .columns .column-header h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .related-post-section .wrap .columns .column-body {
        grid-template-columns: repeat(1, minmax(320px, 1fr));

    }

    .related-post-section .wrap .columns .column-body:not(.slick-initialized) {
        padding-left: 20px;
        padding-right: 20px;
    }

    .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;
    }
}

.related-post-section .wrap .columns .column-body.slick-initialized .slick-dots {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 8px;
}

.related-post-section .wrap .columns .column-body.slick-initialized .slick-dots li {
    margin: 0;
    width: 16px;
    height: 16px;
}

.related-post-section .wrap .columns .column-body.slick-initialized .slick-dots li button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #CECECE;
}

.related-post-section .wrap .columns .column-body.slick-initialized .slick-dots li button:before {
    display: none;
}

.related-post-section .wrap .columns .column-body.slick-initialized .slick-dots li button:hover,
.related-post-section .wrap .columns .column-body.slick-initialized .slick-dots li.slick-active button {
    background: #073950;
}

@media (max-width: 767px) {
    .related-post-section .wrap .columns .column-header {
        flex-flow: column nowrap;
        align-items: center;
        gap: 20px;
    }

    .related-post-section .wrap .columns .column-header .slick-arrow-buttons {
        display: none;
    }

    .related-post-section .wrap .columns .column-body.slick-initialized {
        margin-left: -7px;
        margin-right: -7px;
    }

    .related-post-section .wrap .columns .column-body.slick-initialized .column-post {
        margin-left: 7px;
        margin-right: 7px;
    }

    .base-header .wrap .menu-item-has-children ul.sub-menu {
        box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.10);
    }
}