/* Editorias & Colunistas Widget Styles */
.editorias-colunistas-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.editorias-colunistas-wrap .coluna-item {
    display: flex;
    gap: 12px;
    padding: 0;
    background: transparent;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.editorias-colunistas-wrap .coluna-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.editorias-colunistas-wrap .coluna-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
}

.editorias-colunistas-wrap .coluna-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.editorias-colunistas-wrap .coluna-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.editorias-colunistas-wrap .coluna-editoria {
    font-size: 11px;
    font-weight: 600;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}

.editorias-colunistas-wrap .coluna-title {
    margin: 0 0 6px 0;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.editorias-colunistas-wrap .coluna-title a {
    color: #1a1a1a;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.editorias-colunistas-wrap .coluna-title a:hover {
    color: #e74c3c;
}

.editorias-colunistas-wrap .coluna-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.editorias-colunistas-wrap .coluna-tag {
    font-size: 10px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 3px;
    background: #f5f5f5;
    color: #666;
}

.editorias-colunistas-wrap .coluna-tag.destaque {
    background: #fef3cd;
    color: #856404;
}

.editorias-colunistas-wrap .coluna-tag.colunista {
    background: #e8f4fd;
    color: #0066cc;
}

.editorias-colunistas-wrap .coluna-tag.editorial {
    background: #fce4ec;
    color: #c62828;
}

.editorias-colunistas-wrap .no-posts {
    color: #999;
    font-style: italic;
    text-align: center;

    .colunista-article-item {
        display: flex;
        flex-direction: row;
        gap: 15px;
        align-items: flex-start;
    }

    .colunista-article-item .coluna-custom-thumb {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .colunista-article-item .coluna-custom-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
        /* Optional: Keep consistent with other thumbs */
    }

    .colunista-article-item .colunista-article-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Tag above title */
    .colunista-article-item .post-cat-list {
        margin-bottom: 5px;
        order: -1;
        /* Ensure it's first just in case */
    }

    .colunista-article-item .post-cat-list a {
        font-size: 11px;
        text-transform: uppercase;
        font-weight: 700;
        color: #e74c3c;
        /* Example color, match theme */
        text-decoration: none;
    }

    /* Title Styling */
    .colunista-article-item .entry-title {
        margin: 0 0 5px;
        font-size: 16px;
        /* Adjust as needed */
        line-height: 1.3;
    }

    .colunista-article-item .entry-title a {
        text-decoration: none !important;
        box-shadow: none !important;
    }