        .post-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .post-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex: 1;
        }

        .post-content-inner {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .post-excerpt {
            line-height: 1.5;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Estilos para o conteúdo completo do post */
        .post-body {
            line-height: 1.6;
        }

        .post-body h1,
        .post-body h2,
        .post-body h3 {
            margin: 1rem 0;
            font-weight: 600;
        }

        .post-body h1 {
            font-size: 1.75rem;
        }

        .post-body h2 {
            font-size: 1.5rem;
        }

        .post-body h3 {
            font-size: 1.25rem;
        }

        .post-body p {
            margin: 0.5rem 0;
        }

        .post-body img {
            max-width: 100%;
            height: auto;
            margin: 1rem 0;
            display: block;
        }

        .post-body ul,
        .post-body ol {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .post-body li {
            margin: 0.25rem 0;
        }

        .post-body span {
            display: inline;
        }

        /* Estilos para comentários */
        .comment-content p {
            margin: 0.25rem 0;
        }

        .comment-content img {
            max-width: 100%;
            height: auto;
            margin: 0.5rem 0;
            display: block;
        }
