/*posts section starts*/
    .post-card {
        background: #fff;
        border: 2px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        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: 16px;
        margin: 8px 0;
        font-weight: bold;
        text-align: left;
        color: red;
    }

    .post-category {
        font-size: 14px;
        color: red;
    }
/*posts section ends*/