/*posts section starts*/
    .post-card {
        background: #fff;
        border: solid #ff8400 2px;
        border-radius: 0px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .post-card:hover {
        transform: translateY(-5px);
    }

    .post-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .post-details {
        padding: 10px;
        text-align: center;
    }

    .post-title {
        font-size: 12px;
        margin: 8px 0;
        font-weight: bold;
        text-align: left;
    }

    .post-category {
        font-size: 10px;
        color: black;
    }
/*posts section ends*/


/* Reduce gutters inside your posts grid by 75% */
.row.custom-gutters {
    margin-left: -3.75px;
    margin-right: -3.75px;
}
.row.custom-gutters > [class*='col-'] {
    padding-left: 3.75px;
    padding-right: 3.75px;
}
