.recent-post-wrap h5.heading {
    font-weight: 600;

}
.recent-post-wrap .heading {
    font-weight: 600;
    margin-bottom: 18px;
}
.recent-post-wrap .resources-grid {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    margin:0px -15px;

}

.recent-post-wrap .resource-card {
    width:25%;
    padding:0px 15px;

}
.recent-post-wrap .resource-card-inner {
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #EEE;
    background: #FFF;
    height:100%;
}

.recent-post-wrap  .background-img {
    margin-bottom: 0;
    width: 100%;
    min-height: 160px;];
    background-size: cover;
    background-repeat: no-repeat;
    background-position: inherit;
    border-radius: 8px;
}
.recent-post-wrap .card-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.recent-post-wrap .card-content .category {
    margin-bottom: 8px;
    border-radius: 4px;
    background: #EBFFF5;
    padding: 4px 12px;
    color: #444A55;
    font-family: Inter;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 0.1px;
    text-transform: capitalize;
    display: inline-block;
}

.recent-post-wrap .card-content .title {
    color: #1E1E1E;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.16px;
    margin-bottom: 0;
}

.recent-post-wrap .author-details {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.recent-post-wrap .author-details img {
    width: 24px;
    height: 24px;
    border-radius:24px;
    margin-right: 4px;
}

.recent-post-wrap .author-details span {
    overflow: hidden;
    color: #464646;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.14px;
}
.recent-post-wrap .author-details  .date {
    color: #919191;
}
.recent-post-wrap .card-content .title a {
    color: inherit;
    text-decoration: none;
}
@media (max-width: 1024px) {
    .recent-post-wrap .resource-card {
        width:33.333%;
    }
}
@media (max-width: 991px) {
    .recent-post-wrap .resource-card {
        width:50%;
    }
}
@media (max-width:767px) {
    .recent-post-wrap .resource-card {
        width:100%;
    }
    .recent-post-wrap  .background-img {
        min-height:220px;
}
}