/*posts section starts*/
    .post-card {
        background: #fff;
        border: solid green 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: 10px;
        margin: 4px 0;
        font-weight: bold;
        text-align: left;
        color: red;
    }

    .post-category {
        font-size: 10px;
        color: red;
    }
/*posts section ends*/