.hpl_posts_gride .post_card {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.hpl_posts_gride .post_card .card_svg svg {
    width: 100%;
    height: 100%;
}

.hpl_posts_gride .card_svg {
    height: 100%;
}

.hpl_posts_gride .post_card .image_wrapper {
    position: absolute;
    object-fit: cover;
    z-index: 2;
    bottom: 75px;
    display: flex;
    justify-content: center;
    transition: 0.3s all;

}

.hpl_posts_gride .main_image {
    position: relative;
    width: 90%;
}

.hpl_posts_gride .image_wrapper img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(1);
}

.hpl_posts_gride .post_card:hover img {
    filter: grayscale(0);
}

.hpl_posts_gride .front_layer {
    position: absolute;
    z-index: 4;
    display: flex;
    color: #fff;
    background: rgba(10, 23, 23, 0.93);
    bottom: 0;
    width: 100%;
    flex-wrap: nowrap;
    padding: 30px 25px;
    justify-content: space-between;
    border-radius: 10px;
    backdrop-filter: blur(7px);
    border: 1px solid #0a281e;
}

.hpl_posts_gride .post_title h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    font-size: 1.1rem;
}

.hpl_posts_gride .post_actions {
    width: 20%;
    background: #1f2626;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--e-global-color-primary);
    border-radius: 5px;
    transition: 0.3s all;
}

.hpl_posts_gride .post_button {
    position: absolute;
    top: 0;
    margin: 10px;
    padding: 10px;
    background: var(--e-global-color-primary);
    border-radius: 5px;
}

.hpl_posts_gride .post_title i {
    padding-left: 5px;
    color: var(--e-global-color-primary);
}

.hpl_posts_gride .post_info {
    color: gray;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.hpl_posts_gride .post_info span {
    font-size: 15px;
    color: gray;
}

.hpl_posts_gride path {
    stroke: #0a281e;
    color: #111d1c;
    transition: 0.3s all;
}

.hpl_posts_gride .post_card:hover path {
    color: var(--e-global-color-primary);
}

.hpl_posts_gride .post_card:hover .post_actions {
    background: var(--e-global-color-primary);
    color: black;
}

.hpl_posts_gride {
    display: flex;
    gap: 20px;
    padding: 0 20px;
}

.hpl_posts_gride .post_title {
    width: 78%;
}

.hpl_posts_gride .post_card:hover .image_wrapper {
}

@media (max-width: 767px) {
    .hpl_posts_gride {
        display: block;
    }

    .hpl_posts_gride .post_card {
        height: 205px;
    }

}