.post-wrapper {
    margin: 0 auto;
}

.post-image {
    width: 100%;
   
}

.post-image img {
    width: 100%;
max-height: 60vh;    object-fit: cover;
    display: block;
    height: auto;
    display: block;
}


.post-item{
    padding: 2rem;
    margin-bottom: 3rem; 
}

.post-text{
    text-align: justify;
    display: flex;
}

.post-meta {
    color: var(--primary) !important;
    font-style: italic;
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .post-flex {
        flex-direction: column;
        align-items: center;
    }

    .post-text {
        text-align: center;
    }

    .post-title {
        font-size: 2rem;
        text-align: center;
    }

    .post-image {
        margin: 20px 0;
    }

    .post-content {
        font-size: 1rem;
    }
}