.case_study_post_list {
    margin-top: 134px;
    margin-bottom: 134px;
}
.case_study_post_list .heading {
    font-size: 30px;
    line-height: 1.4;
    font-family: var(--fonts_OpenSans_Light);
    color: #262B36;
    margin-bottom: 47px;
}
.case_study_post_list__item .image {
    position: relative;
    display: block;    
}
.case_study_post_list__item .image::after {
    content: '';
    display: block;
    padding-bottom: 120%;

    background: #F0F0F0;
    backdrop-filter: blur(2px);
}

.case_study_post_list__item .image img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
.case_study_post_list__grid_list {    
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 35px;
}
.case_study_post_list__item {
    overflow: hidden;
    border-radius: 4px;
    background: linear-gradient(132.25deg, #232A3B 39.58%, #3F4963 99.82%);
    position: relative;
}
.case_study_post_list__item .content {
    position: absolute;
    left: 0;
    bottom: 47px;
    padding-left: 32px;    
    padding-right: 32px;
    display: flex;
    align-items: center;
    z-index: 1;
    color: #FFF;
    transition: all ease-in-out .3s;
}
.case_study_post_list__item .content .title {
    margin-bottom: 0;
    margin-left: 16px;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
}
.case_study_post_list__item .content img {
    height: 16px;
    border-right: 1px solid #FFF;
    padding-right: 16px;
}
.case_study_post_list__item .overlay_content {
    position: absolute;
    left: 0;
    top: 80%;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 20px 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all ease-in-out .45s;
    opacity: 0;
    visibility: hidden;
}
.case_study_post_list__item:hover .overlay_content {
    opacity: 1;
    visibility: visible;
    top: 0;
}
.case_study_post_list__item:hover .content {
    opacity: 0;
}
.case_study_post_list__item .overlay_content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(261.54deg, #00924C 12.4%, #5DBE86 56.47%);
    opacity: 0.85;
    z-index: -1;
}

.case_study_post_list__item .overlay_content .logo {
    margin-bottom: 51px;
    line-height: 0;
}
.case_study_post_list__item .overlay_content .results {
    width: 100%;
}
.case_study_post_list__item .overlay_content .result_item {
    margin-bottom: 21px;
    color: #FFF;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}
.case_study_post_list__item .overlay_content .result_item:last-child {
    margin-bottom: 0;
}
.case_study_post_list__item .overlay_content .label {
    font-family: var(--fonts_OpenSans_Bold);
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.case_study_post_list__item .overlay_content .text {
    font-family: var(--fonts_OpenSans_Light);
    font-size: 24px;
    line-height: 1.1;
}
.case_study_post_list__item .overlay_content .read_link {
    font-size: 12px;
    line-height: 1.4;
    font-family: var(--fonts_OpenSans_Bold);
    margin-top: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
    text-transform: uppercase;
}
.case_study_post_list__item .overlay_content .read_link:hover {
    color: #262B36;
}
@media (max-width: 1439px) {
    .case_study_post_list {
        margin-top: 114px;
        margin-bottom: 114px;
    }
}
@media (max-width: 1199px) {
    .case_study_post_list {
        margin-top: 94px;
        margin-bottom: 94px;
    }
    .case_study_post_list__item .content {
        bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .case_study_post_list__grid_list {
        gap: 20px;
    }
    .case_study_post_list__item .overlay_content .logo {
        margin-bottom: 32px;
    }
    .case_study_post_list__item .overlay_content .read_link {
        margin-top: 32px;
    }
    .case_study_post_list__item .overlay_content .label {
        margin-bottom: 8px;
    }
    .case_study_post_list__item .overlay_content .result_item {
        margin-bottom: 12px;        
        padding-bottom: 12px;
    }
}
@media (max-width: 991px) { 
    .case_study_post_list {
        margin-top: 72px;
        margin-bottom: 72px;
    }
    .case_study_post_list__grid_list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }
}
@media (max-width: 767px) { 
    .case_study_post_list {
        margin-top: 48px;
        margin-bottom: 48px;
    }
    .case_study_post_list__grid_list {        
        gap: 20px;
    }
}
@media (max-width: 575px) { 
    .case_study_post_list__grid_list {        
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .case_study_post_list .heading {
        font-size: 24px;
        margin-bottom: 26px;
    }
}