.latest_post_list {
    margin-top: 45px;
    margin-bottom: 45px;
}
.latest_post_list .heading {
    font-family: var(--fonts_OpenSans_Light);
    color: #000;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 22px;
}
.latest_post_list__list {    
    /* row-gap: 30px; */
}
.latest_post_list__item {
    overflow: hidden;
    border-radius: 8px;
    background: rgba(35, 42, 59, 0.03);
}
.latest_post_list__item .image {
    position: relative;
    display: block;
    margin-bottom: 22px;
    overflow: hidden;
}
.latest_post_list__item .image::after {
    content: '';
    display: block;
    padding-bottom: 44.71%;
    background: linear-gradient(261.54deg, #00924C 12.4%, #5DBE86 56.47%);
}
.latest_post_list__item .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    object-fit: cover;
    transition: all ease-in-out .5s;
    transform: scale(1);
}
.latest_post_list__item:hover .image img {
    transform: scale(1.12);
}

.latest_post_list__item .image a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.latest_post_list__item .content {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 20px;
}
.latest_post_list__item .cat_date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.05em;
    margin-bottom: 22px;
}
.latest_post_list__item .content .cat {
    font-size: 13px;
    line-height: 1.4;
    font-family: var(--fonts_OpenSans_Bold);
    color: #008825;
    text-transform: uppercase;
}
.latest_post_list__item .content .date {
    font-size: 12px;
    line-height: 1.4;
    color: #262B36;
}
.latest_post_list__item .title,
.latest_post_list__item .title a {
    font-family: var(--fonts_OpenSans_Bold);
    font-size: 17px;
    line-height: 1.4;
    color: #262B36;
    margin-bottom: 20px;
}

.latest_post_list__item .title a:hover  {
    color: #008825;
}   

.latest_post_list__item .description {
    font-size: 13px;
    line-height: 164%;
    color: #262B36;
    margin-bottom: 20px;
}
.latest_post_list__item .read_more {
    margin-top: auto;
    border-top: 1px solid #EDECF2;
    padding: 16px 30px;
}
.latest_post_list__item .read_link {
    font-family: var(--fonts_OpenSans_Bold);
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    letter-spacing: 0.03em;
    color: #262B36;
    gap: 10px;
    text-transform: uppercase;
}
.latest_post_list__item .read_link:hover {
    color: var(--color_green);
}


@media (min-width: 768px) {
    .latest_post_list {
        margin-top: 74px;
        margin-bottom: 74px;
    }
}
@media (min-width: 992px) {
    .latest_post_list {
        margin-top: 82px;
        margin-bottom: 104px;
    }
    .latest_post_list__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 20px;
    }
    .latest_post_list .heading {
        font-size: 26px;
        margin-bottom: 30px;
    }
}
@media (min-width: 1200px) {
    .latest_post_list {
        /* margin-top: 132px; */
        margin-bottom: 140px;
    }
    .latest_post_list__list {
        column-gap: 43px;
    }   
}
@media (min-width: 1440px) {
    .latest_post_list {
        /* margin-top: 85px; */
        margin-bottom: 190px;
    }
}

@media (max-width: 991px) {
    .latest_post_list__item {
        margin-bottom: 30px;
    }
    .latest_post_list__item:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .latest_post_list__item .content,
    .latest_post_list__item .read_more {
        padding-left: 16px;
        padding-right: 16px;
    }
    .latest_post_list__item .description {
        font-size: 12px;
        line-height: 1.5;
    }
    .latest_post_list__item .content .cat {
        font-size: 12px;
    }
    .latest_post_list__item .title {
        font-size: 16px;
    }
}