.post_card_section .post_card {
    position: relative;
    overflow: hidden;
    width: 32%;
}


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

.post_card_section .card_svg {
    height: 100%;
    position: absolute;
}

.post_card_section .post_card .image_wrapper {
    bottom: 30%;
    display: flex;
    justify-content: center;
    transition: 0.3s all;
}

.post_card_section .main_image {
    position: relative;
    width: 90%;
    margin-bottom: 25%;
}

.post_card_section .image_wrapper img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(1);
}
.post_card_section .post_card:hover img {
    filter: grayscale(0);
}
.post_card_section .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;
}

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

.post_card_section .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;
    padding: 14px 0px;
}


.post_card_section .post_button {
    position: absolute;
    top: 0;
    margin: 10px;
    padding: 10px;
    background: rgb(41 48 44 / 60%);
    border-radius: 10px;
    backdrop-filter: blur(7px);
    display: flex;
    box-shadow: inset 0 0 10px #ffffff1c;
}

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


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

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

.post_card_section .post_info span {
    font-size: 15px;
    color: gray;
    display: flex;
}

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

.post_card_section .front_layer .post_title a {
    color: var(--e-global-color-text);
    font-size: 16px;
    font-weight: 600;
}

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

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

.post_card_section {
    display: flex;
    gap: 20px;
}

.post_card_section .post_title {
    width: 78%;
}



.post_card_section .post_card:first-child {
    width: 43%;
}

.post_card_section .post_card:first-child .main_image {
    margin-bottom: 10%;
}

.post_card_section .post_card .image_wrapper {
    margin-bottom: -40px;
}


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

    }
    .post_card_section .post_card:first-child {
        width: 100%;
    }

    .post_card_section .post_card {
        width: 100%;
        margin: 30px 0;
    }

    .post_card_section .post_card {
        height: 290px;
    }
}