    .post {
        display: flex;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 24px;
        padding: 12px;
    }

    .post-image {
        flex: 0 0 200px;
        margin-right: 16px;
    }

    .post-image img {
        max-width: 100%;
        border-radius: 2px;
        display: block;
    }

    .post-content {
        flex: 1;
    }

    .post-header {
        display: flex;
        justify-content: space-between;
        font-size: 0.9em;
        color: #555;
        margin-bottom: 8px;
    }

    .tags {
        margin-bottom: 12px;
    }

    .tag {
        display: inline-block;
        padding: 2px 8px;
        margin-right: 4px;
        border-radius: 4px;
        font-size: 0.85em;
    }

    .comments {
        border-top: 1px solid #ddd;
        padding-top: 8px;
    }

    .comment {
        margin-bottom: 12px;
    }

    .comment-meta {
        font-size: 0.85em;
        color: #666;
    }

    .pagination {
        text-align: center;
        margin-top: 24px;
    }

    .pagination a, .pagination span {
        display: inline-block;
        padding: 6px 12px;
        margin: 0 2px;
        border: 1px solid #ddd;
        border-radius: 4px;
        text-decoration: none;
        color: #007BFF;
    }

    .pagination .current {
        font-weight: bold;
        color: white;
        border-color: #007BFF;
    }

    .pagination .disabled {
        color: #999;
        border-color: #ddd;
        pointer-events: none;
    }

    .no-wrap {
        white-space: nowrap;
    }

    @media (max-width: 767px) {
        .post, .post-header {
            flex-direction: column;
        }
        .post-image {
            display: flex;
            flex: 0;
            padding-bottom: 5px;
            justify-content: center;

        }
        .post-comment-meta {
            display: flex;
            flex: 0;
            padding-bottom: 0px;
            justify-content: center;
        }
        .comment {
            padding-left: 5px;
        }
    }